import { ButtonHTMLAttributes, DetailedHTMLProps } from 'react'; export interface RoundButtonProps extends DetailedHTMLProps, HTMLButtonElement> { disabled?: boolean; width?: number; height?: number; variant: 'lg' | 'sm'; }