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