Files

16 lines
266 B
TypeScript
Raw Permalink Normal View History

2026-02-14 21:47:08 +01:00
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
}
export { Skeleton }