UNPKG

@littlespoon/icons

Version:
26 lines (22 loc) 595 B
/** * Flowtype definitions for CaretIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ export type CaretIconProps = { /** * 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<SVGElement>; declare export default function CaretIcon(x: CaretIconProps): React.Element<>;