{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "separator",
  "type": "registry:ui",
  "title": "Separator",
  "description": "Hairline divider with optional dashed/dotted variant.",
  "dependencies": [
    "@radix-ui/react-separator"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "utils"
  ],
  "files": [
    {
      "path": "registry/blacksite/ui/separator.tsx",
      "type": "registry:ui",
      "target": "components/ui/separator.tsx",
      "content": "\"use client\";\n\nimport * as React from \"react\";\nimport * as SeparatorPrimitive from \"@radix-ui/react-separator\";\n\nimport { cn } from \"@/lib/utils\";\n\ninterface SeparatorProps extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {\n  variant?: \"solid\" | \"dashed\" | \"dotted\";\n}\n\nconst Separator = React.memo(\n  React.forwardRef<React.ElementRef<typeof SeparatorPrimitive.Root>, SeparatorProps>(\n    (\n      { className, orientation = \"horizontal\", decorative = true, variant = \"solid\", ...props },\n      ref,\n    ) => (\n      <SeparatorPrimitive.Root\n        ref={ref}\n        decorative={decorative}\n        orientation={orientation}\n        className={cn(\n          \"shrink-0 bg-transparent\",\n          orientation === \"horizontal\" ? \"h-px w-full border-t\" : \"h-full w-px border-l\",\n          variant === \"solid\" && \"border-border border-solid\",\n          variant === \"dashed\" && \"border-border border-dashed\",\n          variant === \"dotted\" && \"border-border border-dotted\",\n          className,\n        )}\n        {...props}\n      />\n    ),\n  ),\n);\nSeparator.displayName = \"Separator\";\n\nexport { Separator };\n"
    }
  ]
}
