UNPKG

@littlespoon/icons

Version:
17 lines 560 B
/// <reference types="react" /> export interface SubtractIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to white. */ fill?: string; /** * The stroke of the component. Defaults to black. */ stroke?: string; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; } export default function SubtractIcon({ fill, stroke, size, ...other }: SubtractIconProps): JSX.Element; //# sourceMappingURL=SubtractIcon.d.ts.map