UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.1 kB
const React = require("react"); const { forwardRef } = require("react"); const BagIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M9.03 6.406q.49.305.929.759c1.197 1.25 3.229 1.263 4.414.026q.286-.298.596-.527V6.42a2.97 2.97 0 0 0-5.94-.014m7.415-.454c2.89-.754 6.156 1.662 5.46 5.109l-1.215 6.004c-.581 2.873-3.129 4.933-6.078 4.933H9.354c-3.095 0-5.749-2.207-6.274-5.238l-1.006-5.805c-.384-2.216.842-3.982 2.508-4.77A4.75 4.75 0 0 1 7.57 5.82a4.47 4.47 0 0 1 8.876.132m-.726 6.798a.75.75 0 0 1-.75-.75v-.93a.75.75 0 0 1 1.5 0V12a.75.75 0 0 1-.75.75m-7.44 0a.75.75 0 0 1-.75-.75v-.93a.75.75 0 0 1 1.5 0V12a.75.75 0 0 1-.75.75", clipRule: "evenodd" })); const ForwardRef = forwardRef(BagIcon); module.exports = ForwardRef;