@spaced-out/ui-design-system
Version:
Sense UI components library
26 lines • 733 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { ElevationType } from '../../../components/Tooltip';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export interface TabListProps {
classNames?: ClassNames;
onSelect?: (arg1: {
tabId: string;
label?: string;
}) => unknown;
children?: React.ReactNode;
size?: 'medium' | 'small';
selectedTab?: {
tabId: string;
label?: string;
};
menuWidth?: string;
elevation?: ElevationType;
maxTabWidth?: string;
testId?: string;
}
export declare const TabList: Flow.AbstractComponent<TabListProps, HTMLDivElement>;
export {};
//# sourceMappingURL=TabList.d.ts.map