import React from 'react'; import { ExtendedFlexComponent, ExtendedFlexProps } from '../types'; type Props = { /** * The size of the button. */ readonly aspectSize?: 's' | 'm' | 'l'; /** * If true, the button is disabled */ readonly isDisabled?: boolean; }; type IconButtonProps = ExtendedFlexProps; type IconButtonComponent = ExtendedFlexComponent; export { IconButtonComponent, IconButtonProps };