UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.83 kB
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 StyledEyeSolid = ({ 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: "M11.65 8.35C11.7667 8.3375 11.8833 8.33333 12 8.33333C14.2083 8.33333 16 10.0875 16 12.3333C16 14.5417 14.2083 16.3333 12 16.3333C9.75417 16.3333 8 14.5417 8 12.3333C8 12.2167 8.00417 12.1 8.01667 11.9833C8.40417 12.1708 8.85417 12.3333 9.33334 12.3333C10.8042 12.3333 12 11.1375 12 9.66667C12 9.1875 11.8375 8.7375 11.65 8.35ZM20.025 6.35833C21.975 8.16667 23.2792 10.2958 23.8958 11.8208C24.0333 12.15 24.0333 12.5167 23.8958 12.8458C23.2792 14.3333 21.975 16.4625 20.025 18.3083C18.0625 20.1333 15.3667 21.6667 12 21.6667C8.63334 21.6667 5.9375 20.1333 3.97584 18.3083C2.02584 16.4625 0.722505 14.3333 0.102547 12.8458C-0.0341823 12.5167 -0.0341823 12.15 0.102547 11.8208C0.722505 10.2958 2.02584 8.16667 3.97584 6.35833C5.9375 4.535 8.63334 3 12 3C15.3667 3 18.0625 4.535 20.025 6.35833ZM12 6.33333C8.6875 6.33333 6 9.02083 6 12.3333C6 15.6458 8.6875 18.3333 12 18.3333C15.3125 18.3333 18 15.6458 18 12.3333C18 9.02083 15.3125 6.33333 12 6.33333Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledEyeSolid); const EyeSolid = /*#__PURE__*/memo(ForwardRef); export default EyeSolid;