import { CSSProperties, SyntheticEvent } from 'react'; import IconWrapperProps from '../Icon/type'; type IconButtonProps = { variant?: 'primary' | 'ghost'; onClick?: (a: SyntheticEvent) => unknown; iconProps?: IconWrapperProps; size?: 'small' | 'medium' | 'large'; style?: CSSProperties; }; export default IconButtonProps; //# sourceMappingURL=type.d.ts.map