| 123456789101112131415 |
- import type { HTMLAttributes } from "react";
- import { cn } from "@/lib/utils";
- export function Skeleton({
- className,
- ...props
- }: HTMLAttributes<HTMLDivElement>) {
- return (
- <div
- className={cn("animate-pulse rounded-md bg-muted", className)}
- {...props}
- />
- );
- }
|