ForgeSight / frontend /src /components /ui /skeleton.jsx
emergent-agent-e1
auto-commit for 41db1e46-1e00-4de7-81a3-658988d8d311
7a7199f
raw
history blame contribute delete
225 Bytes
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props} />
);
}
export { Skeleton }