@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.46 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconEyeContactCheck = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M2 2.75A.75.75 0 0 1 2.75 2h2.5a.75.75 0 0 1 0 1.5H3.5v1.75a.75.75 0 0 1-1.5 0zM2 21.25v-2.5a.75.75 0 0 1 1.5 0v1.75h1.75a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75M22 2.75v2.5a.75.75 0 0 1-1.5 0V3.5h-1.75a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 .75.75M9 12a3 3 0 0 0 2.515 2.96 6.5 6.5 0 0 1 .91-1.52 1.5 1.5 0 1 1 1.014-1.016 6.5 6.5 0 0 1 1.522-.91A3 3 0 0 0 9 12" }), _jsx("path", { d: "M4.963 12c.952 1.445 3.067 3.996 6.124 4.435a6.6 6.6 0 0 0-.072 1.504c-3.82-.474-6.31-3.605-7.304-5.114a1.5 1.5 0 0 1 0-1.65C4.787 9.54 7.623 6 12 6s7.212 3.54 8.29 5.175c.114.174.189.367.224.564a6.5 6.5 0 0 0-2.163-.684C17.09 9.473 14.92 7.5 12 7.5c-3.55 0-5.993 2.916-7.037 4.5" }), _jsx("path", { fillRule: "evenodd", d: "M23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0m-2.646-1.854a.5.5 0 0 1 0 .708l-3.5 3.5a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708l1.646 1.647 3.146-3.147a.5.5 0 0 1 .708 0", clipRule: "evenodd" })] }));
};
IconEyeContactCheck.iconName = "eye-contact-check";
export default IconEyeContactCheck;