@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.12 kB
JavaScript
const React = require("react");
function CartIcon({
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("circle", {
cx: 9.5,
cy: 20.5,
r: 1.5
}), /*#__PURE__*/React.createElement("circle", {
cx: 16.5,
cy: 20.5,
r: 1.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M6.345 10.91V9l.104-1.097c.258-2.733 2.637-4.826 5.487-4.826h8.844c.674 0 1.22.526 1.22 1.175v7.773C22 14.22 20.152 16 17.873 16H9.009c-2.867 0-5.24-1.928-5.59-4.668a22 22 0 0 0-.382-2.18 7 7 0 0 1-.08-.402A74 74 0 0 0 2.57 6.6c-.223-1.097-.432-2.555-.562-3.533C1.932 2.498 2.395 2 2.991 2M11 21h4M16 10h6"
}));
}
const ForwardRef = React.forwardRef(CartIcon);
module.exports = ForwardRef;