{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "separator",
  "title": "separator",
  "description": "separator",
  "dependencies": [
    "react-aria-components",
    "tailwind-merge"
  ],
  "files": [
    {
      "path": "src/components/ui/separator.tsx",
      "content": "'use client'\n\nimport { Separator as Divider, type SeparatorProps } from 'react-aria-components/Separator'\nimport { twMerge } from 'tailwind-merge'\n\nexport function Separator({ orientation = 'horizontal', className, ...props }: SeparatorProps) {\n  return (\n    <Divider\n      className={twMerge(\n        'shrink-0 border-0 bg-border forced-colors:bg-[ButtonBorder]',\n        orientation === 'horizontal' ? 'h-px w-full' : 'h-full w-px',\n        className\n      )}\n      {...props}\n    />\n  )\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}