UNPKG

shineout

Version:
8 lines (7 loc) 322 B
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>;