@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.59 kB
JavaScript
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",
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.618 4.309c1.671-1.004 3.446-1.738 4.684-2.19 1.226-.45 2.661-.031 3.185 1.223.422 1.013.954 2.497 1.23 4.104.275 1.596.312 3.392-.338 4.98-.808 1.976-2.631 3.513-4.388 4.62-1.778 1.121-3.607 1.875-4.584 2.24-.677.252-1.512.105-1.97-.555-.55-.793-1.553-2.384-2.173-4.264-.617-1.87-.894-4.15.19-6.211C6.32 6.612 7.966 5.3 9.619 4.309m6.818-1.372a.75.75 0 0 1 .11 1.055c-1.553 1.912-2.802 3.664-3.8 5.319.801-.086 1.482-.43 2.174-1.056a.75.75 0 0 1 1.006 1.112c-1 .905-2.106 1.438-3.485 1.464a.75.75 0 0 1-.472-.155c-.544 1.016-.993 2-1.358 2.968.812.057 1.569-.157 2.389-.633a.75.75 0 0 1 .754 1.297c-1.151.668-2.324.98-3.635.79-.67 2.25-.914 4.45-.896 6.807a.75.75 0 0 1-1.5.012c-.02-2.597.266-5.012 1.025-7.467l-.02-.02c-.964-1.079-1.295-2.306-1.226-3.706A.75.75 0 0 1 9 10.8c-.037.75.07 1.373.357 1.929.364-.916.798-1.843 1.309-2.794C9.974 9.218 9.6 8.34 9.437 7.319a.75.75 0 0 1 1.481-.237c.094.584.265 1.06.54 1.46 1.038-1.722 2.33-3.533 3.923-5.496a.75.75 0 0 1 1.055-.11",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(LeafIcon);
module.exports = ForwardRef;