import { ReactNode, CSSProperties } from 'react'; export interface IDoubleButton { /** 复式按钮icon展示 */ icon?: ReactNode; /** 按钮展示内容 */ children?: string | ReactNode | null | undefined; /** 是否加载中 */ loading?: boolean; /** 是否禁用 */ disabled?: boolean; /** 自定义类名 */ className?: string; /** 行内样式 */ style?: CSSProperties; /** 自定义埋点采集内容 */ logValue?: string; /** 点击回调 */ onClick?: () => any; }