@littlespoon/icons
Version:
Little Spoon icons
18 lines • 703 B
TypeScript
/// <reference types="react" />
export interface ExclamationIconProps extends React.SVGAttributes<SVGElement> {
/**
* The fill of the component. Defaults to black.
*/
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 ExclamationIcon({ fill, stroke, size, ...other }: ExclamationIconProps): React.ReactElement;
export declare const ExclamationBase: import("styled-components").StyledComponent<"svg", any, ExclamationIconProps, never>;
//# sourceMappingURL=ExclamationIcon.d.ts.map