diff --git a/packages/react/src/docs/components/Tabs.mdx b/packages/react/src/docs/components/Tabs.mdx index 67b5079..519f210 100644 --- a/packages/react/src/docs/components/Tabs.mdx +++ b/packages/react/src/docs/components/Tabs.mdx @@ -28,3 +28,54 @@ Organizes content into multiple sections with tabbed navigation. 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. |