@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 915 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function EyeOpenIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "eye-open",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.39999 12.5C9.39999 10.7879 10.7879 9.39999 12.5 9.39999C14.2121 9.39999 15.6 10.7879 15.6 12.5C15.6 14.2121 14.2121 15.6 12.5 15.6C10.7879 15.6 9.39999 14.2121 9.39999 12.5Z",
fill: "currentColor"
}), /* @__PURE__ */ jsx("path", {
d: "M12.5 7.5C8.5 7.5 6 10 4.5 12.5C6 15 8.5 17.5 12.5 17.5C16.5 17.5 19 15 20.5 12.5C19 10 16.5 7.5 12.5 7.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { EyeOpenIcon, EyeOpenIcon as default };
//# sourceMappingURL=EyeOpen.js.map