UNPKG

@astraicons/react

Version:

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

37 lines 1.39 kB
const React = require("react"); const { forwardRef } = require("react"); const CupIcon = ({ 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: "m5 5 1.598 7.405a4.5 4.5 0 0 0 4.215 3.547L12 16l1.187-.049a4.5 4.5 0 0 0 4.215-3.546L19 5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M17.5 13c1.868 0 3.5-1.535 3.5-3.429V7.857A.85.85 0 0 0 20.154 7H19M6.5 13C4.632 13 3 11.465 3 9.571V7.857C3 7.384 3.379 7 3.846 7H5.5", opacity: 0.4 }), /*#__PURE__*/React.createElement("ellipse", { cx: 12, cy: 5, strokeWidth: 1.5, rx: 7, ry: 2 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M10.4 16h3.2c.165 0 .305.216.282.379-.036.26-.033.673.118 1.288.273 1.111 1.228 2.393 1.713 2.992.109.134.013.341-.16.341H8.447c-.173 0-.269-.207-.16-.341.485-.599 1.44-1.88 1.713-2.992.15-.615.154-1.027.118-1.288-.023-.163.117-.379.282-.379Z", opacity: 0.4 })); const ForwardRef = forwardRef(CupIcon); module.exports = ForwardRef;