UNPKG

@astraicons/react

Version:

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

20 lines 1.55 kB
const React = require("react"); const { forwardRef } = require("react"); const GratitudeIcon = ({ 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", { d: "M12 2.884a2.85 2.85 0 0 1 1.783-.634c.809 0 1.57.351 2.12.952.549.598.847 1.396.847 2.217 0 .82-.298 1.618-.847 2.217l-2.125 2.317A2.41 2.41 0 0 1 12 10.75c-.68 0-1.319-.296-1.778-.797L8.097 7.636a3.28 3.28 0 0 1-.847-2.217c0-.82.298-1.62.847-2.217C9.153 2.049 10.83 1.944 12 2.884M2.25 6.53c0-.865.406-1.62 1.053-2.013.676-.41 1.548-.368 2.208.263.047.044.117.1.236.196.107.086.244.196.374.317.215.2.629.62.629 1.207v2.738l4.232 5.33c.504.569.768 1.341.768 2.12v2.114c0 1.472-.991 2.948-2.528 2.948H7.69c-1.117 0-1.767-1.056-1.767-2.008 0-.275-.134-.478-.258-.56-.545-.36-1.374-.968-2.074-1.749-.688-.768-1.34-1.802-1.34-3.002zM21.75 6.53c0-.865-.406-1.62-1.053-2.013-.676-.41-1.548-.368-2.208.263a4 4 0 0 1-.236.196 7 7 0 0 0-.374.317c-.215.2-.629.62-.629 1.207v2.738l-4.232 5.33c-.504.569-.768 1.341-.768 2.12v2.114c0 1.472.991 2.948 2.528 2.948h1.533c1.117 0 1.767-1.056 1.767-2.008 0-.275.134-.478.258-.56.545-.36 1.374-.968 2.074-1.749.688-.768 1.34-1.802 1.34-3.002z" })); const ForwardRef = forwardRef(GratitudeIcon); module.exports = ForwardRef;