@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
33 lines • 1.3 kB
JavaScript
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: "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.96m12.839-9.258a9.4 9.4 0 0 1 1.859 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: "M9 12a3 3 0 0 1 3-3m2.918 2.3q.082.339.082.7a3 3 0 0 1-3.899 2.863"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.354 9.323a3 3 0 0 0-4.13 3.816"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19.973 3 2.881 19.966"
}));
const ForwardRef = forwardRef(EyeSlashIcon);
module.exports = ForwardRef;