@kenreymozo/kenrey-component
Version:
Components for kendallrey
10 lines (9 loc) • 377 B
TypeScript
/// <reference types="react" />
import { CustomSize, CustomVariant, Size } from '../components';
type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'outline' | 'link';
export type ButtonT = {
lIcon?: JSX.Element;
rIcon?: JSX.Element;
isDestructive?: boolean;
} & CustomVariant<ButtonVariant> & CustomSize<Size> & React.ComponentProps<'button'>;
export {};