@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 925 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LoveIcon = ({
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: "M12 5.036C13.062 3.9 14.498 3.25 16.01 3.25c1.549 0 3.016.682 4.085 1.867 1.067 1.182 1.655 2.77 1.655 4.411 0 1.642-.588 3.23-1.655 4.412l-4.78 5.297c-.865.958-2.056 1.513-3.315 1.513-1.26 0-2.45-.555-3.315-1.513l-4.78-5.297C2.838 12.758 2.25 11.17 2.25 9.528s.588-3.23 1.655-4.411C6.126 2.655 9.748 2.628 12 5.036",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(LoveIcon);
module.exports = ForwardRef;