{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "separator",
  "dependencies": [
    "react-aria-components"
  ],
  "registryDependencies": [
    "https://taki-ui.com/r/utils.json"
  ],
  "files": [
    {
      "path": "registry/new-york/ui/separator.tsx",
      "content": "\"use client\"\n\nimport * as React from \"react\"\nimport {\n  Separator as RACSeparator,\n  type SeparatorProps,\n} from \"react-aria-components\"\n\nimport { cn } from \"@/lib/utils\"\n\nexport function Separator(props: SeparatorProps) {\n  const { orientation = \"horizontal\", className, ...rest } = props\n\n  return (\n    <RACSeparator\n      data-slot=\"separator\"\n      orientation={orientation}\n      className={cn(\n        \"bg-border shrink-0\",\n        orientation === \"horizontal\" ? \"h-px w-full\" : \"h-full w-px\",\n        className\n      )}\n      {...rest}\n    />\n  )\n}\n\nSeparator.displayName = \"Separator\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}