@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.94 kB
JavaScript
const React = require("react");
function EyeSlashIcon({
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: "M12 20.998c3.984.073 7.665-2.178 9.504-5.813a5.06 5.06 0 0 0 0-4.37q-.212-.42-.457-.815M12 20.998a10 10 0 0 1-.637-.008m.637.008-.637-.008M21.047 10q-.325-.524-.7-1m.7 1-.7-1m0 0a11 11 0 0 0-.568-.664m0 0A11 11 0 0 0 19 7.58m.779.756L19 7.58m0 0-.205-.17M16 5.737a10.2 10.2 0 0 0-4-.735c-3.984-.073-7.665 2.178-9.504 5.813A5.1 5.1 0 0 0 2 13c.001.758.17 1.505.496 2.185a10.8 10.8 0 0 0 1.636 2.382m7.231 3.423q-.435-.018-.863-.074m0 0a10 10 0 0 1-.844-.146m.844.146-.844-.146m0 0q-.51-.11-1.003-.27m0 0q-.218-.071-.432-.151m.432.151-.432-.151m0 0a10 10 0 0 1-.598-.245m0 0a10 10 0 0 1-.552-.268m.552.268-.552-.268m0 0q-.29-.15-.571-.32"
}), /*#__PURE__*/React.createElement("path", {
d: "M9 13a3 3 0 0 1 3-3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19 3 2 20"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "square",
strokeLinejoin: "round",
d: "M11.739 15.278a2.4 2.4 0 0 0 2.51-3.146m-2.51 3.146a3 3 0 0 1-.18-.024m.18.024-.18-.024m0 0a2.4 2.4 0 0 1-.333-.083m0 0a2 2 0 0 1-.219-.083m.219.083-.219-.083m0 0a2.4 2.4 0 0 1-.28-.146m0 0a2.4 2.4 0 0 1-.31-.223zm3.307-3.282a2.4 2.4 0 0 0-.213-.302zm0 0q.072.122.13.252m0 0q.048.107.086.22m-.086-.22.086.22"
}));
}
const ForwardRef = React.forwardRef(EyeSlashIcon);
module.exports = ForwardRef;