physix-live / frontend /src /components /Skeleton.tsx
Pratyush-01's picture
Upload folder using huggingface_hub
08f8699 verified
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)}
/>
);
}