Tab container component using tile-based visual style for organizing content sections with visual tab indicators.
npm install @hautechai/webui.tiletabgroupTab container component using tile-based visual style for organizing content sections with visual tab indicators.
``bashpnpm (recommended)
pnpm add @hautechai/webui.tiletabgroup
Parameters
| Parameter | Type | Description |
| ----------- | --------------------------------- | ------------------------------------------------------ |
| children | React.ReactNode | Required tab content, typically TileTabItem components |
| value | string \| number | Optional controlled active tab identifier |
| onChange | (value: string \| number) => void | Optional callback function when tab changes |
| orientation | 'horizontal' \| 'vertical' | Optional tab layout direction |
| size | string | Optional size variant for tab styling |
May include additional parameters for styling and animation behavior.
Usage Example
`tsx
``