styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 993 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Cart = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M21 7H7.462L5.91 3.586A1 1 0 005 3H2v2h2.356L9.09 15.414A1 1 0 0010 16h8c.4 0 .762-.238.919-.606l3-7A.998.998 0 0021 7z", key: "k0" }),
React.createElement("circle", { cx: 10.5, cy: 18.5, r: 1.5, key: "k1" }),
React.createElement("circle", { cx: 17.5, cy: 18.5, r: 1.5, key: "k2" })));
});
exports.Cart.displayName = 'Cart';
exports.CartDimensions = { height: 24, width: 24 };
;