Spaces:
Sleeping
Sleeping
| import { cn } from "@/lib/cn"; | |
| interface SkeletonProps { | |
| className?: string; | |
| } | |
| export function Skeleton({ className }: SkeletonProps): JSX.Element { | |
| return ( | |
| <div | |
| aria-hidden | |
| className={cn("animate-pulse rounded-md bg-surfaceMuted", className)} | |
| /> | |
| ); | |
| } | |