{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "tailwind-separator",
  "type": "registry:ui",
  "title": "Separator",
  "dependencies": [
    "react",
    "react-aria-components",
    "tailwind-variants",
    "tailwindcss-react-aria-components",
    "tw-animate-css"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "components/ui/Separator.tsx",
      "type": "registry:ui",
      "content": "'use client';\nimport React from 'react';\nimport {Separator as RACSeparator, type SeparatorProps} from 'react-aria-components/Separator';\nimport {tv} from 'tailwind-variants';\n\nconst styles = tv({\n  base: 'bg-neutral-300 dark:bg-neutral-600 forced-colors:bg-[ButtonBorder] border-none',\n  variants: {\n    orientation: {\n      horizontal: 'h-px w-full',\n      vertical: 'w-px min-h-8 h-full'\n    }\n  },\n  defaultVariants: {\n    orientation: 'horizontal'\n  }\n});\n\nexport function Separator(props: SeparatorProps) {\n  return (\n    <RACSeparator\n      {...props}\n      className={styles({orientation: props.orientation, className: props.className})}\n    />\n  );\n}\n"
    }
  ],
  "css": {
    "@plugin \"tailwindcss-react-aria-components\"": {},
    "@import \"tw-animate-css\"": {}
  }
}
