/** * Flowtype definitions for AddIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ export type AddIconProps = { /** * 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 AddIcon(x: AddIconProps): React.Element<>;