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