@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 986 B
JavaScript
import * as React from "react";
function HeartIcon({
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: "M20.376 4.822C21.416 5.988 22 7.57 22 9.219s-.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-5.312-5.96C2.584 12.452 2 10.87 2 9.22s.584-3.231 1.624-4.397c2.165-2.429 5.675-2.429 7.84 0l.536.601.536-.601C13.576 3.655 14.986 3 16.456 3s2.88.655 3.92 1.822",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(HeartIcon);
export default ForwardRef;