import { Button } from "@components/Button"; import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"; import { Story } from "@/components/Story"; import { LoadedCode, GITHUB } from "@/components/LoadedCode"; import { TabsDemo } from "./TabsBlocks/Preview"; # Tabs Organizes content into multiple sections with tabbed navigation. Preview Code ## Installation 1. Create a new file `Tabs.tsx` in your component folder. 2. Copy and paste the following code into the file. ## Usage ```tsx import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"; ``` ```html Tab 1 Tab 2
Tab 1 Content
Tab 2 Content
``` > Note: > > TabContent requires a element as children, with className prop. > It will add `hidden` tailwind classname if the tab is not active. > There is no default element in the tab, so you have to provide it. ## Props ### TabProvider #### Special | Name | Type | Default | Description | | --- | --- | --- | --- | | `defaultName` | `string` | - (**required**) | The name of the tab to be active by default. | ### TabTrigger #### Special | Name | Type | Default | Description | | --- | --- | --- | --- | | `name` | `string` | - (**required**) | The name of the tab. | | `asChild` | `boolean` | `false` | Whether the element is rendered as a child of a component | ### TabContent #### Special | Name | Type | Default | Description | | --- | --- | --- | --- | | `name` | `string` | - (**required**) | The name of the tab. |