Files
f780f31b-fa13-43fb-a74a-208…/research/replit/skeleton.md
Nikolay Pecheniev a835343280 Initial commit
2026-04-27 18:07:16 +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 }