UNPKG

@spaced-out/ui-design-system

Version:
24 lines 875 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { AnchorType } from '../ButtonDropdown'; import type { ElevationType } from '../Tooltip'; type ClassNames = Readonly<{ wrapper?: string; buttonTabDropdownWrapper?: string; }>; export type 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; }; export declare const ButtonTabs: Flow.AbstractComponent<ButtonTabsProps, HTMLDivElement>; export {}; //# sourceMappingURL=ButtonTabs.d.ts.map