UNPKG

996 BJavaScriptView Raw
1const React = require("react");
2
3function EyeIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M2.036 12.322a1.012 1.012 0 010-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178z"
23 }), /*#__PURE__*/React.createElement("path", {
24 strokeLinecap: "round",
25 strokeLinejoin: "round",
26 d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z"
27 }));
28}
29
30const ForwardRef = React.forwardRef(EyeIcon);
31module.exports = ForwardRef;
\No newline at end of file