///
import { IconType } from 'react-icons/lib/esm';
import { ButtonProps } from './Button.types';
type OmittedButtonProps = 'IconLeft' | 'IconRight' | 'justify' | 'fullWidth' | 'loadingText';
export interface IconButtonProps extends Omit {
Icon: IconType | React.FunctionComponent>;
}
export {};