Spaces:
Build error
Build error
| import { cn } from "@/lib/utils"; | |
| function Skeleton({ | |
| className, | |
| ...props | |
| }: React.HTMLAttributes<HTMLDivElement>) { | |
| return ( | |
| <div | |
| className={cn( | |
| "animate-pulse rounded-md bg-gradient-to-r from-muted via-muted/50 to-muted bg-[length:200%_100%] animate-gradient", | |
| className | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| export { Skeleton }; | |