{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "separator",
  "title": "Separator",
  "description": "Horizontal or vertical dividing line.",
  "dependencies": [
    "@radix-ui/react-separator"
  ],
  "files": [
    {
      "path": "registry/new-york/ui/separator.tsx",
      "content": "\"use client\";\n\nimport * as SeparatorPrimitive from \"@radix-ui/react-separator\";\nimport * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nconst Separator = React.forwardRef<\n  React.ComponentRef<typeof SeparatorPrimitive.Root>,\n  React.ComponentProps<typeof SeparatorPrimitive.Root>\n>(function Separator(\n  { className, orientation = \"horizontal\", decorative = true, ...props },\n  ref\n) {\n  return (\n    <SeparatorPrimitive.Root\n      aria-orientation={orientation}\n      className={cn(\n        \"shrink-0 touch-manipulation bg-border data-[orientation=horizontal]:h-px data-[orientation=vertical]:h-full data-[orientation=horizontal]:w-full data-[orientation=vertical]:w-px\",\n        className\n      )}\n      data-slot=\"separator\"\n      decorative={decorative}\n      orientation={orientation}\n      ref={ref}\n      {...props}\n    />\n  );\n});\n\nexport { Separator };\n",
      "type": "registry:ui"
    }
  ],
  "meta": {
    "apiRef": "https://www.radix-ui.com/docs/primitives/components/separator#api-reference"
  },
  "docs": "https://www.radix-ui.com/primitives/docs/components/separator",
  "categories": [
    "component"
  ],
  "type": "registry:ui"
}