@spaced-out/ui-design-system
Version:
Sense UI components library
26 lines • 870 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { IconType } from '../../../components/Icon';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export interface ButtonTabProps {
classNames?: ClassNames;
children?: React.ReactNode;
disabled?: boolean;
onButtonTabSelect?: ((id: string, e?: React.SyntheticEvent<HTMLElement> | null | undefined) => unknown) | null | undefined;
iconName?: string;
iconType?: IconType;
size?: 'medium' | 'small';
isFluid?: boolean;
ariaLabel?: string;
id: string;
selectedButtonTabId?: string;
isLoading?: boolean;
isLeftCurved?: boolean;
isRightCurved?: boolean;
testId?: string;
}
export declare const ButtonTab: Flow.AbstractComponent<ButtonTabProps, HTMLButtonElement>;
export {};
//# sourceMappingURL=ButtonTab.d.ts.map