kioai / artifacts /image-gen /src /components /ui /skeleton.tsx
kinaiok
Initial deployment setup for Hugging Face Spaces
5ef6e9d
raw
history blame contribute delete
266 Bytes
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 }