UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.62 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 = ["M10.334 7.75q.207 0 .402.04c.338.065.646.214.905.422a2.078 2.078 0 0 1-.079 3.3 2.085 2.085 0 0 1 1.856 2.071v.917a.75.75 0 0 1-.75.75H8.001a.75.75 0 0 1-.75-.75v-.917c0-.373.102-.734.287-1.05a2.1 2.1 0 0 1 .587-.646 2.1 2.1 0 0 1 .98-.374q-.034-.027-.066-.055a2.07 2.07 0 0 1-.481-2.708 2.08 2.08 0 0 1 1.776-1m-1 5.25a.583.583 0 0 0-.583.583v.167h3.167v-.167a.586.586 0 0 0-.584-.583zm1-3.75a.583.583 0 0 0 0 1.167.58.58 0 0 0 .364-.133l.03-.024a.6.6 0 0 0 .15-.22.56.56 0 0 0 .03-.313l-.008-.028-.024-.079-.01-.023a1 1 0 0 0-.043-.081q-.014-.02-.03-.038a.6.6 0 0 0-.169-.148l-.04-.022a.6.6 0 0 0-.25-.058m3.293 2.273q.191.028.374.088a2.08 2.08 0 0 1 1.416 1.972v.917a.75.75 0 0 1-.75.75h-.42c.108-.227.17-.48.171-.749v-.918l-.004-.153a3.1 3.1 0 0 0-.787-1.907M8 1a7 7 0 0 1 6.994 7.274 3.1 3.1 0 0 0-1.6-1.335 5.5 5.5 0 0 0-3.576-4.13l.076.118a9.6 9.6 0 0 1 1.293 3.946 3 3 0 0 0-.694-.12l-.159-.003q-.34.001-.66.071a8 8 0 0 0-1.068-3.123A7 7 0 0 0 8 2.836c-.18.218-.393.506-.606.862-.491.818-.989 2-1.114 3.552h2.373c-.546.356-.97.88-1.203 1.5H6.28a8.3 8.3 0 0 0 .725 2.813 3.08 3.08 0 0 0-.754 2.02v.918q.002.142.024.28A6.998 6.998 0 0 1 8 1M2.553 8.75a5.5 5.5 0 0 0 3.628 4.44l-.075-.117c-.604-1.008-1.2-2.451-1.33-4.323zM6.18 2.809A5.5 5.5 0 0 0 2.553 7.25h2.223c.13-1.872.726-3.315 1.33-4.323zm6.443 4.961a2.08 2.08 0 0 1 1.794 2.063c0 .676-.325 1.273-.823 1.653l-.08-.083a3 3 0 0 0-.366-.311c.148-.329.24-.689.264-1.068l.006-.191a3.07 3.07 0 0 0-.795-2.062"]; export const GlobeUsersIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "globe-users", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); GlobeUsersIcon.displayName = "Blueprint6.Icon.Next.GlobeUsersIcon"; export default GlobeUsersIcon; //# sourceMappingURL=globe-users.js.map