import { ButtonBaseProps } from '../ButtonBase'; export type IconButtonVariant = 'filled' | 'outlined' | 'standard' | 'neutral'; export interface IconButtonProps extends ButtonBaseProps { /** * The style of icon button to use * @default 'filled' */ variant?: IconButtonVariant; }