@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 769 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function EyeClosedIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "eye-closed",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M7 15.5L5.5 17.5M20.5 12.5C19.8612 13.5647 19.041 14.6294 18.0008 15.501M18.0008 15.501C16.5985 16.676 14.7965 17.5 12.5 17.5M18.0008 15.501L18 15.5M18.0008 15.501L19.5 17.5M12.5 17.5C8.5 17.5 6 15 4.5 12.5M12.5 17.5V20M15.5 17L16.5 19.5M9.5 17L8.5 19.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { EyeClosedIcon, EyeClosedIcon as default };
//# sourceMappingURL=EyeClosed.js.map