| gio | 5f2f100 | 2025-03-20 18:38:48 +0400 | [diff] [blame^] | 1 | import { cn } from "@/lib/utils" |
| 2 | |||||
| 3 | function 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 | |||||
| 15 | export { Skeleton } | ||||