UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 1.82 kB
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-11 0a5.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-.264a1.25 1.25 0 0 1-.908-.78l-.001-.002-.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 EarthFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "earth-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); EarthFilledIcon.displayName = "Blueprint6.Icon.Next.EarthFilledIcon"; export default EarthFilledIcon; //# sourceMappingURL=earth-filled.js.map