@littlespoon/icons
Version:
Little Spoon icons
26 lines (22 loc) • 569 B
Flow
/**
* Flowtype definitions for SubtractIcon
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
* @flow
*/
export type SubtractIconProps = {
/**
* 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",
...
} & React$SVGAttributes<SVGElement>;
declare export default function SubtractIcon(x: SubtractIconProps): React$Node;