UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

27 lines 1.18 kB
import * as React from "react"; function HeartSlashIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M17 4.025C17.025 4 17.163 4 16.456 4c-1.47 0-2.88.655-3.92 1.822L12 6.423l-.536-.601c-2.165-2.429-5.675-2.429-7.84 0C2.584 6.988 2 8.57 2 10.219s.584 3.232 1.624 4.398L5 16.025zM6.838 18.223l2.098 2.353C9.749 21.488 10.85 22 12 22s2.252-.512 3.064-1.424l5.312-5.959C21.416 13.451 22 11.869 22 10.219s-.584-3.231-1.624-4.397a6 6 0 0 0-.575-.562z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M19.798 2.202a.69.69 0 0 1 0 .975L4.177 18.798a.69.69 0 1 1-.975-.974L18.824 2.201a.69.69 0 0 1 .974 0", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(HeartSlashIcon); export default ForwardRef;