@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.02 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const BagIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M3.058 10.873c-.625-3.605 3.936-5.741 6.48-3.086 1.418 1.482 3.828 1.507 5.246.026 2.483-2.592 6.847-.357 6.14 3.144l-1.176 5.81C19.251 19.23 17.066 21 14.528 21H9.44c-2.672 0-4.956-1.904-5.407-4.509z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.6 7.5v-.9a3.6 3.6 0 0 0-7.2 0",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M15.6 12v-.9M8.4 12v-.9",
opacity: 0.4
}));
const ForwardRef = forwardRef(BagIcon);
export default ForwardRef;