@littlespoon/icons
Version:
Little Spoon icons
17 lines • 560 B
TypeScript
/// <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