Spaces:
Sleeping
Sleeping
File size: 281 Bytes
0e24aff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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)}
/>
);
}
|