UNPKG

@littlespoon/icons

Version:
17 lines 547 B
/// <reference types="react" /> export interface AddIconProps 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 AddIcon({ fill, stroke, size, ...other }: AddIconProps): React.ReactElement; //# sourceMappingURL=AddIcon.d.ts.map