@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.17 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LoveSlashIcon = ({
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: "M21.076 3.532a.75.75 0 0 0-1.057-1.064l-1.45 1.44a5.34 5.34 0 0 0-2.558-.658c-1.513 0-2.949.651-4.011 1.786-2.252-2.408-5.874-2.38-8.095.08C2.838 6.3 2.25 7.887 2.25 9.529s.588 3.23 1.655 4.412l2.153 2.386-3.131 3.108a.75.75 0 0 0 1.056 1.065zM20.977 6.38a.75.75 0 1 0-1.326.702l.064.125c.347.701.535 1.5.535 2.321 0 1.291-.463 2.515-1.268 3.407L14.2 18.232c-.598.663-1.392 1.018-2.201 1.018s-1.603-.355-2.201-1.018l-.538-.597a.75.75 0 1 0-1.114 1.005l.538.597c.865.958 2.056 1.513 3.315 1.513 1.26 0 2.45-.555 3.315-1.513l4.78-5.297c1.067-1.182 1.655-2.77 1.655-4.412a6.75 6.75 0 0 0-.773-3.148"
}));
const ForwardRef = forwardRef(LoveSlashIcon);
module.exports = ForwardRef;