@spaced-out/ui-design-system
Version:
Sense UI components library
25 lines • 833 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { IconType } from '../../Icon';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export type 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;
};
export declare const ButtonTab: Flow.AbstractComponent<ButtonTabProps, HTMLButtonElement>;
export {};
//# sourceMappingURL=ButtonTab.d.ts.map