import { SvgIconProps } from "../Svg/IconProps.types"; import { ButtonProps } from "../Button/ButtonProps.types"; import { ButtonColors } from "../Button/ButtonProps.types"; export interface SvgButtonProps extends ButtonProps { size?: "small"; color?: ButtonColors; svgIconProps?: SvgIconProps; children?: React.ReactNode; }