UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

19 lines (18 loc) 441 B
import { ReactNode } from 'react'; export type ITab = { id: string; label: string; icon?: ReactNode; href?: string; }; export type Variant = 'primary' | 'secondary'; export type ScrollableTabsProps = { tabs: ITab[]; variant?: Variant; component?: 'a' | 'button'; selectedTab?: string; defaultTabId?: string; fullWidth?: boolean; notNullable?: boolean; onClick?(id: string | null): unknown; };