UNPKG

@littlespoon/icons

Version:
14 lines 589 B
/// <reference types="react" /> export interface CalendarIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to black. */ fill?: string; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; } export default function CalendarIcon({ fill, size, ...other }: CalendarIconProps): React.ReactElement; export declare const CalendarIconBase: import("styled-components").StyledComponent<"svg", any, CalendarIconProps, never>; //# sourceMappingURL=CalendarIcon.d.ts.map