UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.33 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconGlobe = (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", { fillRule: "evenodd", d: "M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10 10-4.477 10-10m-10 8.5c.137 0 .373-.077.688-.456.311-.374.625-.961.902-1.752.498-1.415.836-3.355.9-5.542H9.51c.064 2.187.402 4.127.9 5.542.277.791.591 1.378.902 1.752.315.379.55.456.688.456m-2.49-9.25c.064-2.187.402-4.127.9-5.542.277-.791.591-1.378.902-1.752.315-.379.55-.456.688-.456s.373.077.688.456c.311.374.625.961.902 1.752.498 1.415.836 3.355.9 5.542zm6.48 1.5c-.064 2.323-.421 4.437-.984 6.04a9 9 0 0 1-.597 1.364 8.51 8.51 0 0 0 6.058-7.404zm4.477-1.5H15.99c-.064-2.323-.421-4.437-.984-6.04a9 9 0 0 0-.597-1.364 8.51 8.51 0 0 1 6.058 7.404m-12.457 0H3.533A8.51 8.51 0 0 1 9.59 3.846a9 9 0 0 0-.597 1.365c-.563 1.602-.92 3.716-.984 6.039m-4.477 1.5H8.01c.064 2.323.421 4.437.984 6.04.175.496.373.956.597 1.364a8.51 8.51 0 0 1-6.058-7.404", clipRule: "evenodd" }) })); 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", { fillRule: "evenodd", d: "M18 10a8 8 0 1 0-16 0 8 8 0 0 0 16 0m-7.58 6.708c-.25.282-.395.292-.42.292-.026 0-.17-.01-.42-.292-.248-.28-.518-.744-.765-1.402-.452-1.205-.763-2.891-.809-4.806h3.988c-.046 1.915-.357 3.6-.809 4.806-.247.658-.517 1.121-.766 1.402M11.994 9.5H8.006c.046-1.915.357-3.6.809-4.806.247-.658.517-1.121.766-1.402C9.83 3.01 9.974 3 10 3s.17.01.42.292c.248.28.518.744.765 1.402.452 1.206.762 2.891.809 4.806m1 1c-.062 2.678-.618 5-1.428 6.324a7 7 0 0 0 5.416-6.324zm3.988-1h-3.988c-.062-2.678-.618-5-1.428-6.324A7 7 0 0 1 16.983 9.5m-9.976 0c.062-2.678.618-5 1.427-6.324A7 7 0 0 0 3.018 9.5zm-3.988 1a7 7 0 0 0 5.415 6.324c-.81-1.325-1.365-3.646-1.427-6.324z", clipRule: "evenodd" }) })); } }; IconGlobe.iconName = "globe"; export default IconGlobe;