Files
d1a2f309-b9fe-4acd-a8cc-cf0…/research/replit/skeleton.md
2026-04-28 15:30:34 +03:00

266 B

import { cn } from "@/lib/utils"

function Skeleton({ className, ...props }: React.HTMLAttributes) { return ( <div className={cn("animate-pulse rounded-md bg-primary/10", className)} {...props} /> ) }

export { Skeleton }