UNPKG

@astraicons/react

Version:

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

32 lines 1.23 kB
const React = require("react"); const { forwardRef } = require("react"); const EyeSlashIcon = ({ 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: "M18.695 7.614a9.4 9.4 0 0 1 1.86 2.474 4.32 4.32 0 0 1 0 3.824A9.45 9.45 0 0 1 12 18.998a9.44 9.44 0 0 1-3.96-.791m0 0-.138-.062z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M14.919 11.301q.08.337.082.7a3 3 0 0 1-3.9 2.862", opacity: 0.5 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M16.674 6.143A9.45 9.45 0 0 0 12 5.002a9.45 9.45 0 0 0-8.554 5.086A4.35 4.35 0 0 0 3 12c0 .663.153 1.317.446 1.912a9.4 9.4 0 0 0 2.41 2.96m7.498-7.55a3 3 0 0 0-4.13 3.817M19.974 3 2.88 19.966", opacity: 0.4 })); const ForwardRef = forwardRef(EyeSlashIcon); module.exports = ForwardRef;