UNPKG

@littlespoon/icons

Version:
18 lines 671 B
/// <reference types="react" /> export interface CloseIconProps 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 CloseIcon({ fill, stroke, size, ...other }: CloseIconProps): React.ReactElement; export declare const CloseIconBase: import("styled-components").StyledComponent<"svg", any, CloseIconProps, never>; //# sourceMappingURL=CloseIcon.d.ts.map