shineout
Version:
A components library for React
8 lines (7 loc) • 322 B
TypeScript
import { ButtonProps as UnStyledButtonProps } from '@sheinx/base';
/**
* @title Button
*/
export type ButtonProps = Omit<UnStyledButtonProps, 'jssStyle' | 'renderButton' | 'buttonRef'>;
export type ButtonShape = Exclude<ButtonProps['shape'], undefined>;
export type ButtonType = Exclude<ButtonProps['type'], undefined>;