UNPKG

@astraicons/react

Version:

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

25 lines 983 B
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", 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", strokeLinejoin: "round", d: "M19.539 5.62C20.474 6.655 21 8.061 21 9.527c0 1.467-.526 2.873-1.461 3.91l-4.781 5.296C14.026 19.544 13.034 20 12 20s-2.026-.455-2.758-1.266l-4.78-5.297C3.525 12.4 3 10.994 3 9.528s.526-2.872 1.461-3.909c1.949-2.159 5.108-2.159 7.056 0l.483.535.482-.535C13.418 4.582 14.687 4 16.011 4s2.592.582 3.528 1.62", clipRule: "evenodd" })); const ForwardRef = forwardRef(LoveIcon); module.exports = ForwardRef;