/** * Flowtype definitions for ArrowIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ export type ArrowIconProps = { /** * The fill of the component. Defaults to black. */ fill?: string, /** * The direction of the component. Defaults to "down". */ direction?: "up" | "down" | "left" | "right", /** * The size of the component. Defaults to "small". */ size?: "xsmall" | "small" | "medium" | "large", ... } & React$SVGAttributes; declare export default function ArrowIcon(x: ArrowIconProps): React.Element<>;