@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 2.2 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconGlobeFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
return (_jsx("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: "M14.492 12.75H9.508c.056 2.612.399 4.938.912 6.634.282.934.603 1.634.925 2.085.333.465.563.53.653.531H12c.088 0 .32-.062.655-.53.322-.452.643-1.152.925-2.086.513-1.696.857-4.022.912-6.634M9.508 11.25h4.984c-.056-2.612-.399-4.938-.912-6.634-.282-.934-.603-1.634-.925-2.085C12.32 2.06 12.088 2 12 2s-.32.062-.655.53c-.322.452-.643 1.152-.925 2.086-.513 1.696-.856 4.022-.912 6.634M15.992 12.75c-.055 2.727-.413 5.204-.976 7.068-.22.727-.477 1.382-.773 1.93 4.207-.965 7.402-4.582 7.73-8.998zM21.972 11.25h-5.98c-.055-2.727-.413-5.205-.976-7.068-.22-.727-.477-1.382-.773-1.93 4.207.965 7.402 4.582 7.73 8.998M8.008 11.25h-5.98c.327-4.416 3.522-8.034 7.73-8.998-.297.548-.554 1.203-.774 1.93-.564 1.863-.92 4.341-.976 7.068M8.008 12.75h-5.98c.327 4.416 3.522 8.034 7.73 8.998-.297-.548-.554-1.203-.774-1.93-.564-1.864-.92-4.341-.976-7.068" }) }));
default:
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M11.996 10.5C11.932 14.685 11.063 18 10 18s-1.932-3.315-1.996-7.5zM12.996 10.5c-.03 2.072-.253 3.966-.612 5.4-.185.74-.418 1.409-.713 1.925a8.004 8.004 0 0 0 6.314-7.325zM17.985 9.5h-4.989c-.03-2.072-.253-3.966-.612-5.4-.185-.74-.418-1.409-.713-1.925A8.004 8.004 0 0 1 17.985 9.5M11.996 9.5H8.004C8.068 5.315 8.937 2 10 2s1.932 3.315 1.996 7.5M7.004 9.5c.03-2.072.253-3.966.612-5.4.185-.74.418-1.409.713-1.925A8.004 8.004 0 0 0 2.015 9.5zM2.015 10.5a8.004 8.004 0 0 0 6.314 7.325c-.295-.516-.528-1.186-.713-1.926-.359-1.433-.581-3.327-.612-5.399z" }) }));
}
};
IconGlobeFilled.iconName = "globe--filled";
export default IconGlobeFilled;