File size: 241 Bytes
a566fb0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}) {
return (
(<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props} />)
);
}
export { Skeleton }
|