@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.14 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledEyeSlashSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M5.65124 5.47887C7.31249 4.18512 9.44249 3.19999 12 3.19999C15.03 3.19999 17.4562 4.58149 19.2225 6.22249C20.9775 7.84999 22.1512 9.76624 22.7062 11.1387C22.83 11.435 22.83 11.765 22.7062 12.0612C22.2037 13.2725 21.195 14.9787 19.71 16.5012L23.655 19.5912C24.045 19.8987 24.1162 20.465 23.8087 20.855C23.5012 21.245 22.935 21.3162 22.545 21.0087L0.344843 3.60837C-0.0463567 3.30162 -0.114944 2.73612 0.191693 2.34484C0.498368 1.95364 1.06387 1.88506 1.45537 2.19169L5.65124 5.47887ZM8.36624 7.60624L11.7525 10.2612C11.91 9.94249 12 9.58249 12 9.16624C12 8.76874 11.8537 8.36374 11.685 8.01499C11.79 8.00374 11.895 7.96624 12 7.96624C13.9875 7.96624 15.6 9.57874 15.6 11.5662C15.6 12.1137 15.4912 12.6012 15.2662 13.0437L16.7475 14.1762C17.1637 13.4112 17.4 12.5337 17.4 11.5662C17.4 8.61874 14.9812 6.16624 12 6.16624C10.6012 6.16624 9.32249 6.73249 8.36624 7.60624ZM12 20C8.96999 20 6.54374 18.62 4.77749 16.9775C3.02324 15.3162 1.85024 13.4 1.29224 12.0612C1.16924 11.765 1.16924 11.435 1.29224 11.1387C1.64999 10.28 2.26087 9.16999 3.11587 8.05624L6.65249 10.8425C6.61874 11.09 6.59999 11.3412 6.59999 11.5662C6.59999 14.5812 9.01874 17 12 17C12.7012 17 13.3725 16.865 13.9875 16.6212L16.7325 18.7812C15.3712 19.5162 13.7925 20 12 20Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledEyeSlashSolid);
const EyeSlashSolid = /*#__PURE__*/memo(ForwardRef);
export default EyeSlashSolid;