/// 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; /** * If true, a loader spinner is shown */ readonly isLoading?: boolean; }; type StyledProps = { readonly hasText: boolean; }; type FloatingButtonProps = ExtendedFlexProps; type FloatingButtonComponent = ExtendedFlexComponent; type StyledFloatingButtonProps = FloatingButtonProps & StyledProps; export { FloatingButtonComponent, FloatingButtonProps, StyledFloatingButtonProps };