UNPKG

@astraicons/react

Version:

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

28 lines 1.2 kB
const React = require("react"); const { forwardRef } = require("react"); const LeafIcon = ({ 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: "M9.898 14.215c1.21.295 2.3.091 3.438-.508M12.537 10.093c1.164.027 2.12-.374 3.047-1.143M9.238 13.804c-.77-.938-1.016-1.971-.902-3.208M11.854 9.851c-.886-.698-1.31-1.587-1.443-2.731" }), /*#__PURE__*/React.createElement("path", { d: "M6.118 8.605c-1.897 3.605.873 8.168 1.935 9.699.224.323.67.436 1.092.278 1.905-.71 7.104-2.93 8.54-6.44 1.147-2.805-.07-6.543-.89-8.511-.336-.804-1.298-1.151-2.236-.808-2.429.888-6.904 2.861-8.441 5.782Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M8.087 21.746c.211-6.092 2.095-11.087 8.26-18.06" })); const ForwardRef = forwardRef(LeafIcon); module.exports = ForwardRef;