YOUSEF2434's picture
Upload 96 files
a566fb0 verified
raw
history blame contribute delete
241 Bytes
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}) {
return (
(<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props} />)
);
}
export { Skeleton }