/** * 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; declare export default function SubtractIcon(x: SubtractIconProps): React$Node;