{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "tailwind-togglebuttongroup",
  "type": "registry:ui",
  "title": "ToggleButtonGroup",
  "dependencies": [
    "react",
    "react-aria-components",
    "tailwind-variants",
    "tailwindcss-react-aria-components",
    "tw-animate-css"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "components/ui/ToggleButtonGroup.tsx",
      "type": "registry:ui",
      "content": "'use client';\nimport React from 'react';\nimport {composeRenderProps} from 'react-aria-components/composeRenderProps';\nimport {\n  ToggleButtonGroup as RACToggleButtonGroup,\n  type ToggleButtonGroupProps\n} from 'react-aria-components/ToggleButtonGroup';\nimport {tv} from 'tailwind-variants';\n\nconst styles = tv({\n  base: 'flex gap-1',\n  variants: {\n    orientation: {\n      horizontal: 'flex-row',\n      vertical: 'flex-col'\n    }\n  }\n});\n\nexport function ToggleButtonGroup(props: ToggleButtonGroupProps) {\n  return (\n    <RACToggleButtonGroup\n      {...props}\n      className={composeRenderProps(props.className, (className, renderProps) =>\n        styles({...renderProps, className})\n      )}\n    />\n  );\n}\n"
    }
  ],
  "css": {
    "@plugin \"tailwindcss-react-aria-components\"": {},
    "@import \"tw-animate-css\"": {}
  }
}
