UNPKG

@astraicons/react

Version:

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

27 lines 1.15 kB
const React = require("react"); const { forwardRef } = require("react"); const CartIcon = ({ 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", { strokeLinecap: "round", d: "M6.91 11.018V9.3l.094-.987c.232-2.46 2.374-4.344 4.939-4.344h7.96c.606 0 1.097.474 1.097 1.058v6.996c0 1.975-1.663 3.577-3.714 3.577H9.308c-2.58 0-4.716-1.735-5.031-4.202-.077-.6-.178-1.234-.344-1.962a6 6 0 0 1-.072-.361 66 66 0 0 0-.348-1.934c-.2-.988-.389-2.3-.506-3.18C2.94 3.45 3.355 3 3.891 3" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M14.7 20.1h-3.6m0-.45a1.35 1.35 0 1 1-2.7 0 1.35 1.35 0 0 1 2.7 0Zm6.3 0a1.35 1.35 0 1 1-2.7 0 1.35 1.35 0 0 1 2.7 0ZM15.6 10.2H21", opacity: 0.4 })); const ForwardRef = forwardRef(CartIcon); module.exports = ForwardRef;