minecraft-clone / src /components /ui /skeleton.tsx
TomatitoToho's picture
Upload src/components/ui/skeleton.tsx with huggingface_hub
5564557 verified
Raw
History Blame Contribute Delete
276 Bytes
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }