@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 983 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",
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: "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 12",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 12,
r: 3
}));
}
const ForwardRef = React.forwardRef(EyeIcon);
export default ForwardRef;