@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.42 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoZoom = (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: "M12.888 11.035a.965.965 0 1 1 0 1.93.965.965 0 0 1 0-1.93M9.488 11.035a.965.965 0 1 1 0 1.93.965.965 0 0 1 0-1.93" }), _jsx("path", { fillRule: "evenodd", d: "M21.75 15.14a19.8 19.8 0 0 0 0-6.28 8 8 0 0 0-6.61-6.61 19.8 19.8 0 0 0-6.28 0 8 8 0 0 0-6.61 6.61 19.8 19.8 0 0 0 0 6.28 8 8 0 0 0 6.61 6.61 19.8 19.8 0 0 0 6.28 0 8 8 0 0 0 6.61-6.61M5.492 13.531h2.48a.613.613 0 0 0-.612-.612H5.935L7.654 11.2a.428.428 0 0 0-.304-.731H5.063c0 .338.274.612.612.612h1.232L5.189 12.8a.428.428 0 0 0 .303.732m12.25-3.108c.66 0 1.195.535 1.195 1.194v1.914a.613.613 0 0 1-.612-.612v-1.302a.583.583 0 0 0-1.164 0v1.914a.613.613 0 0 1-.613-.612v-1.302a.583.583 0 0 0-1.164 0v1.302a.61.61 0 0 1-.612.612v-1.914a1.196 1.196 0 0 1 2.083-.798c.218-.243.535-.396.888-.396m-4.854 3.154a1.577 1.577 0 1 0 0-3.154 1.577 1.577 0 0 0 0 3.154m-3.4 0a1.577 1.577 0 1 0 0-3.154 1.577 1.577 0 0 0 0 3.154", clipRule: "evenodd" })] }));
};
IconLogoZoom.iconName = "logo-zoom";
export default IconLogoZoom;