@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.13 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as React from "react";
import { SvgIconContainerNext } from "../../svgIconContainerNext";
const PATHS = ["M13.5 8a5.5 5.5 0 0 0-2.8-4.791 1.25 1.25 0 0 1-.357 1.273l-.002.001-1.674 1.512q-.112.107-.249.18h-.001l-.759.417h.001a1.24 1.24 0 0 1-.606.157l-.9.001-.25.435.168.037q.21.046.393.157l.117.081.106.094q.102.1.177.22l.07.124V7.9l.17.35h.253a1.25 1.25 0 0 1 .39-.34l.09-.047a1.25 1.25 0 0 1 .686-.101l1.426.192.002.001q.195.027.37.11l.114.062.002.001L13.19 9.82c.2-.57.31-1.182.31-1.82m-5.703 2.868 1.108 1.14.011.013q.15.162.237.367l.05.138.031.143a1.3 1.3 0 0 1-.005.437v.001l-.052.265a5.5 5.5 0 0 0 3.324-2.214L9.696 9.433l-1.19-.16zM8 2.5a5.47 5.47 0 0 0-3.021.904.8.8 0 0 1-.051.215l-.699 1.648.414 1.1.28-.49.002-.002c.11-.19.268-.348.459-.458l.146-.072a1.3 1.3 0 0 1 .479-.095h.978l.686-.378 1.513-1.367-.54-.966A6 6 0 0 0 8 2.5M2.5 8a5.5 5.5 0 0 0 5.128 5.486l.102-.534-1.135-1.169-.012-.012a1.25 1.25 0 0 1-.225-1.359l.31-.697a1.3 1.3 0 0 1-.385-.156 1.25 1.25 0 0 1-.462-.514v-.002l-.183-.38-1.22-.264V8.4a1.25 1.25 0 0 1-.908-.78l-.001-.003-.62-1.65A5.5 5.5 0 0 0 2.5 8M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0"];
export const EarthIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "earth", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
EarthIcon.displayName = "Blueprint6.Icon.Next.EarthIcon";
export default EarthIcon;
//# sourceMappingURL=earth.js.map