{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "toggle6",
  "title": "Toggle",
  "description": "A two-state button that can be either on or off.",
  "files": [
    {
      "path": "contents/components/toggle/6/index.tsx",
      "content": "import { Bold, Italic, Underline } from \"lucide-react\";\n\nimport { ToggleGroup, ToggleGroupItem } from \"@/components/ui/toggle-group\";\n\nexport default function ToggleComponent() {\n  return (\n    <ToggleGroup type=\"single\">\n      <ToggleGroupItem value=\"bold\" aria-label=\"Toggle bold\">\n        <Bold className=\"h-4 w-4\" />\n      </ToggleGroupItem>\n      <ToggleGroupItem value=\"italic\" aria-label=\"Toggle italic\">\n        <Italic className=\"h-4 w-4\" />\n      </ToggleGroupItem>\n      <ToggleGroupItem value=\"strikethrough\" aria-label=\"Toggle strikethrough\">\n        <Underline className=\"h-4 w-4\" />\n      </ToggleGroupItem>\n    </ToggleGroup>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/toggle6.tsx"
    }
  ],
  "type": "registry:component"
}