@spaced-out/ui-design-system
Version:
Sense UI components library
25 lines • 926 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { AnchorType } from '../../components/ButtonDropdown';
import type { ElevationType } from '../../components/Tooltip';
type ClassNames = Readonly<{
wrapper?: string;
buttonTabDropdownWrapper?: string;
}>;
export interface ButtonTabsProps {
classNames?: ClassNames;
children: React.ReactNode;
isFluid?: boolean;
size?: 'medium' | 'small';
disabled?: boolean;
selectedButtonTabId?: string;
onButtonTabSelect?: ((id: string, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown) | null | undefined;
wrapAfter?: number;
elevation?: ElevationType;
wrapTabTitle?: string;
anchorPosition?: AnchorType;
testId?: string;
}
export declare const ButtonTabs: Flow.AbstractComponent<ButtonTabsProps, HTMLDivElement>;
export {};
//# sourceMappingURL=ButtonTabs.d.ts.map