sebikostudio-icons
Version:
A collection of icon components
27 lines • 1.18 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const EyeOpenIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "eye, eye opened",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10 3.5C4.5 3.5 1.5 9.5 1.5 9.5C1.5 9.5 4.5 15.5 10 15.5C15.5 15.5 18.5 9.5 18.5 9.5C18.5 9.5 15.5 3.5 10 3.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M13 9.5C13 11.1569 11.6569 12.5 10 12.5C8.3431 12.5 7 11.1569 7 9.5C7 7.8431 8.3431 6.5 10 6.5C11.6569 6.5 13 7.8431 13 9.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
})));
export default EyeOpenIcon;