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.31 kB
const React = require("react"); function EyeSlashIcon({ 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: "M11.996 4c1.705-.031 2.728.076 4.201.822l-3.55 3.55c-.436-.178-.635-.124-.651-.124a3.75 3.75 0 0 0-3.75 3.75c0 .037 0 .264.056.722L4.3 16.722c-.903-.844-1.226-1.388-1.809-2.539a5.1 5.1 0 0 1-.495-2.185c0-.757.17-1.505.495-2.184C4.331 6.179 8.011 3.927 11.996 4M9.374 14.68 5.916 18.14a10.3 10.3 0 0 0 6.08 1.858c3.984.073 7.665-2.18 9.504-5.814a5.06 5.06 0 0 0 0-4.37 10.7 10.7 0 0 0-3.354-3.905l-3.469 3.47a3.75 3.75 0 0 1-5.303 5.303m4.243-4.242a2.25 2.25 0 0 1-3.181 3.181z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M18.798 3.202a.69.69 0 0 1 0 .975L3.177 19.798a.69.69 0 1 1-.975-.974L17.824 3.201a.69.69 0 0 1 .974 0", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(EyeSlashIcon); module.exports = ForwardRef;