Tabs
Display tab content.
Import
import { Tabs } from 'raw-ui';
Default
Controlled
Disabled all tabs
Disabled specific tab
Vertical
API
Tabs
| Prop | Description | Type | Default |
|---|
| defaultValue | default selected value (uncontrolled) | string | - |
| value | selected value (controlled) | string | - |
| disabled | disable all tabs | boolean | false |
| vertical | show all tabs vertically | boolean | false |
| onChange | change event handler | (value: string) => void | - |
| ... | native props | React.HTMLAttributes | - |
Tabs.Tab
| Prop | Description | Type | Default |
|---|
| label | display tab's label | React.ReactNode | - |
| value | unique identification value | string | - |
| disabled | disable current tab | boolean | false |
| ... | native props | React.HTMLAttributes | - |