@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.18 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",
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: "M20.314 6.731q.038.072.073.144c.398.806.612 1.718.612 2.653 0 1.467-.525 2.873-1.461 3.91l-4.78 5.297c-.732.81-1.724 1.265-2.759 1.265s-2.026-.455-2.757-1.265l-.332-.368-.165-.183-.042-.046"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m7.035 16.289-2.574-2.852C3.526 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 4a4.6 4.6 0 0 1 2.489.737M20.547 3 3.455 19.966",
opacity: 0.4
}));
const ForwardRef = forwardRef(LoveSlashIcon);
module.exports = ForwardRef;