@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.06 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 9.25a.75.75 0 0 1 0 1.5h-11a.75.75 0 0 1 0-1.5zm0-4a.75.75 0 0 1 0 1.5h-11a.75.75 0 0 1 0-1.5zm0 2.75a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0m-6.531 6.586a.75.75 0 0 1-.938 0L8 14zM9.75 8c0-1.836-.572-3.2-1.136-4.103A7 7 0 0 0 8 3.063c-.182.21-.398.488-.614.834C6.822 4.8 6.25 6.164 6.25 8s.572 3.2 1.136 4.102c.216.347.432.624.614.835a6.6 6.6 0 0 0 .614-.835C9.178 11.2 9.75 9.837 9.75 8m1.5 0c0 2.164-.678 3.8-1.364 4.898-.342.547-.686.96-.948 1.24a6 6 0 0 1-.454.434l-.01.008-.004.005h-.001L8 14c-.43.538-.466.582-.469.585l-.006-.005-.01-.008a3 3 0 0 1-.128-.112 6 6 0 0 1-.324-.322 8 8 0 0 1-.949-1.24C5.428 11.8 4.75 10.164 4.75 8s.678-3.8 1.364-4.897c.342-.548.686-.96.949-1.24a6 6 0 0 1 .453-.435l.01-.008.004-.005h.001l.1.125-.1-.126a.75.75 0 0 1 .938 0L8 2c.43-.538.466-.582.469-.585l.006.005.01.008a3 3 0 0 1 .128.112q.125.112.325.322c.262.28.606.693.948 1.24C10.572 4.2 11.25 5.837 11.25 8"];
export const GlobeIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "globe", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
GlobeIcon.displayName = "Blueprint6.Icon.Next.GlobeIcon";
export default GlobeIcon;
//# sourceMappingURL=globe.js.map