UNPKG

@littlespoon/icons

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