@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 929 B
JavaScript
import * as React from "react";
function EyeIcon({
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: "M2 12c.001-.758.17-1.505.496-2.185C4.335 6.18 8.016 3.93 12 4.002c3.984-.073 7.665 2.178 9.504 5.813a5.06 5.06 0 0 1 0 4.37c-1.839 3.635-5.52 5.886-9.504 5.813-3.984.073-7.665-2.178-9.504-5.813A5.1 5.1 0 0 1 2 12m10-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5M8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(EyeIcon);
export default ForwardRef;