UNPKG

@astraicons/react

Version:

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

35 lines 1.29 kB
const React = require("react"); const { forwardRef } = require("react"); const CoffeeIcon = ({ 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", strokeLinejoin: "round", d: "M3 8.565C3 7.701 3.73 7 4.628 7h11.744c.9 0 1.628.701 1.628 1.565v3.224c0 1.912-.79 3.746-2.197 5.099A7.66 7.66 0 0 1 10.502 19c-.985 0-1.96-.186-2.87-.549a7.5 7.5 0 0 1-2.434-1.563 7.2 7.2 0 0 1-1.626-2.34A7 7 0 0 1 3 11.789z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.358 4c-.195.113-.358.667-.358 1M7.386 4S7 4.333 7 5M11.077 3c-.39.226-.934 1-.934 2", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M4 21h13" }), /*#__PURE__*/React.createElement("path", { d: "M18.395 9.002A3 3 0 1 1 18.5 15h-1", opacity: 0.4 })); const ForwardRef = forwardRef(CoffeeIcon); module.exports = ForwardRef;