项目文件夹

文件
Alexandru Paduraru b59da7127f registry build checks
2026-01-08 17:47:30 +02:00

12 行
533 B
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "skeleton",
"files": [
{
"path": "components/ui/skeleton.tsx",
"content": "import { cn } from \"@/lib/utils\"\n\nfunction Skeleton({ className, ...props }: React.ComponentProps<\"div\">) {\n return (\n <div\n data-slot=\"skeleton\"\n className={cn(\"bg-accent animate-pulse rounded-md\", className)}\n {...props}\n />\n )\n}\n\nexport { Skeleton }\n",
"type": "registry:ui"
}
],
"type": "registry:ui"
}