@littlespoon/icons
Version:
Little Spoon icons
17 lines • 591 B
TypeScript
/// <reference types="react" />
export interface CaretIconProps extends React.SVGAttributes<SVGElement> {
/**
* 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';
}
export default function CaretIcon({ direction, fill, size, ...other }: CaretIconProps): React.ReactElement;
//# sourceMappingURL=CaretIcon.d.ts.map