UNPKG

epn-ui

Version:

Дизайн система кабинета ВМ

18 lines (17 loc) 634 B
import type { ButtonProps } from 'antd/es/button'; export interface IBaseButtonProps extends ButtonProps { className?: ButtonProps['className']; style?: ButtonProps['style']; htmlType?: ButtonProps['htmlType']; disabled?: ButtonProps['disabled']; block?: ButtonProps['block']; href?: ButtonProps['href']; target?: ButtonProps['target']; onClick?: ButtonProps['onClick']; loading?: ButtonProps['loading']; type?: ButtonProps['type']; danger?: ButtonProps['danger']; shape?: ButtonProps['shape']; size?: ButtonProps['size']; children?: ButtonProps['children']; }