@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.05 kB
JavaScript
const React = require("react");
function ShoppingBag03Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M16 8a4 4 0 11-8 0m-4.367-.599l-.7 8.4c-.15 1.805-.226 2.707.08 3.403a3 3 0 001.319 1.434C5 21 5.905 21 7.716 21h8.567c1.81 0 2.716 0 3.384-.362a3 3 0 001.32-1.434c.305-.696.23-1.598.08-3.403l-.7-8.4c-.13-1.552-.195-2.329-.539-2.916a3 3 0 00-1.294-1.191C17.92 3 17.141 3 15.583 3H8.416c-1.558 0-2.337 0-2.95.294a3 3 0 00-1.295 1.19c-.344.588-.409 1.365-.538 2.917z"
}));
}
const ForwardRef = React.forwardRef(ShoppingBag03Icon);
module.exports = ForwardRef;