@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.03 kB
JavaScript
const React = require("react");
function HeartSlashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19.076 3.738A5.048 5.048 0 0 0 16.456 3c-1.47 0-2.88.655-3.92 1.822L12 5.423l-.536-.601c-2.165-2.429-5.675-2.429-7.84 0C2.584 5.988 2 7.57 2 9.219s.584 3.232 1.624 4.398l2.656 2.98M21.024 5.701l.1.163c.568.994.876 2.156.876 3.354 0 1.65-.584 3.232-1.624 4.398l-5.312 5.96C14.252 20.486 13.15 21 12 21s-2.251-.512-3.064-1.424l-.664-.745-.166-.186M21 2 4 19"
}));
}
const ForwardRef = React.forwardRef(HeartSlashIcon);
module.exports = ForwardRef;