blob: d7e45f7bd315f86eabf32f2c9425223417920e60 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001import { cn } from "@/lib/utils"
2
3function Skeleton({
4 className,
5 ...props
6}: React.HTMLAttributes<HTMLDivElement>) {
7 return (
8 <div
9 className={cn("animate-pulse rounded-md bg-primary/10", className)}
10 {...props}
11 />
12 )
13}
14
15export { Skeleton }