@littlespoon/icons
Version:
Little Spoon icons
26 lines (22 loc) • 595 B
Flow
/**
* 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<>;