UNPKG

@astraicons/react

Version:

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

29 lines 1.53 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", 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: "M6 9.5v-3c0-.473-.704-.888-1.007-1.178C4.18 4.546 3 5.26 3 6.53v7.9c0 1.858 2.038 3.44 3.077 4.126.356.235.595.687.595 1.186 0 .695.455 1.258 1.017 1.258h1.533c.982 0 1.778-.984 1.778-2.198v-2.114c0-.624-.215-1.22-.591-1.637zm0 0v4M18 9.5v-3c0-.473.704-.888 1.007-1.178C19.82 4.546 21 5.26 21 6.53v7.9c0 1.858-2.038 3.44-3.077 4.126-.356.235-.594.687-.594 1.186 0 .695-.456 1.258-1.018 1.258h-1.533C13.796 21 13 20.016 13 18.802v-2.114c0-.624.215-1.22.591-1.637zm0 0v4" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15.35 3.708c.416.454.65 1.07.65 1.71 0 .642-.234 1.257-.65 1.71l-2.124 2.318A1.66 1.66 0 0 1 12 10c-.46 0-.9-.2-1.226-.554L8.65 7.13A2.53 2.53 0 0 1 8 5.419c0-.642.234-1.257.65-1.71.865-.945 2.27-.945 3.136 0l.214.233.214-.234c.416-.453.98-.708 1.568-.708s1.153.255 1.569.708", clipRule: "evenodd", opacity: 0.4 })); const ForwardRef = forwardRef(GratitudeIcon); module.exports = ForwardRef;