@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.99 kB
JavaScript
import * as React from "react";
function CartIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "m3.51 3.536-.008.01c.125.842.321 2.067.527 2.98.143.632.31 1.516.378 1.882q.027.145.067.299c.185.73.298 1.365.382 1.96.178 1.251.799 2.185 2.076 2.774.069.017.013 1.561.068 1.581.037.013-.18-1.51-.129-1.483.023.012.01.067.061.106.025.018-.108-.114-.06-.06.036.043.08.196.08.415.045.264.143.043.143.543-.144.127-.087.48-.14.49-.027.077-.096-.088.045-.011l.095.076a1.4 1.4 0 0 1-.19-.033 2 2 0 0 1-.263-.097l-.005-.003-.03-.013c-1.696-.758-2.971-2.211-3.236-4.074a17 17 0 0 0-.35-1.802 6 6 0 0 1-.088-.394 57 57 0 0 0-.367-1.825c-.22-.977-.425-2.258-.55-3.104-.159-1.07.793-1.781 1.686-1.781a.75.75 0 1 1 0 1.5c-.1 0-.164.038-.191.064"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10.93 17.767c-1.186 0-2.193.935-2.193 2.144 0 1.208 1.007 2.143 2.194 2.143.739 0 1.409-.363 1.809-.929h3.12c.4.566 1.069.93 1.808.93 1.187 0 2.194-.936 2.194-2.144s-1.007-2.144-2.194-2.144c-1.09 0-2.03.79-2.174 1.858h-2.389c-.143-1.067-1.083-1.858-2.174-1.858m-.693 2.144c0-.331.285-.644.694-.644.408 0 .694.313.694.644 0 .33-.286.643-.694.643-.409 0-.694-.313-.694-.643m7.431-.644c-.408 0-.694.313-.694.644 0 .33.286.643.694.643.409 0 .694-.313.694-.643 0-.331-.285-.644-.694-.644M6.932 9.225l.1-1.019c.248-2.54 2.539-4.484 5.282-4.484h8.512c.648 0 1.174.49 1.174 1.092v4.59h-5.776a.75.75 0 1 0 0 1.5H22L22 12.037c0 2.04-1.778 3.693-3.972 3.693H9.496c-.927 0-1.777-.331-2.54-.696z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(CartIcon);
export default ForwardRef;