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.14 kB
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: "M18.292 4.612A4.6 4.6 0 0 0 16.01 4c-1.323 0-2.592.582-3.528 1.62L12 6.153l-.483-.535C9.57 3.46 6.41 3.46 4.461 5.62 3.526 6.656 3 8.062 3 9.53c0 1.465.526 2.871 1.461 3.908L8 17.358", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.292 4.612c.456.26.877.598 1.247 1.007C20.474 6.656 21 8.062 21 9.53c0 1.465-.526 2.871-1.461 3.908l-4.781 5.297C14.026 19.544 13.034 20 12 20s-2.026-.455-2.758-1.266L8 17.358" })); const ForwardRef = forwardRef(LoveIcon); module.exports = ForwardRef;