UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.1 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 = ["M6.983 2.75c-.221.465-.371.97-.44 1.5H4.646a.25.25 0 0 0-.227.147L2.91 7.75h1.84a.75.75 0 0 1 .75.75v1.25h4.793q.581.146 1.207.147a4.98 4.98 0 0 0 3.498-1.43L15 8.5V13a.75.75 0 0 1-.75.75H1.75A.75.75 0 0 1 1 13V8.5a.75.75 0 0 1 .066-.308l1.985-4.41A1.75 1.75 0 0 1 4.646 2.75zM11.5.897a4 4 0 1 1 0 8 4 4 0 0 1 0-8M9.027 4.545a2.497 2.497 0 0 0 2.344 2.846l-.413-.426-.008-.008a.75.75 0 0 1-.135-.815l.07-.163a.75.75 0 0 1-.586-.416h-.001l-.07-.143-.42-.112-.017-.002-.086-.015a1 1 0 0 1-.115-.025.56.56 0 0 1-.24-.122.75.75 0 0 1-.212-.304zm3.961-1.652a.75.75 0 0 1-.233.427l-.001.001-.84.76h-.002a.7.7 0 0 1-.14.1l-.25.138-.134.075-.001-.001a.75.75 0 0 1-.36.092l-.372.001-.007.013a1 1 0 0 1 .15.07l.07.05.064.056a1 1 0 0 1 .106.132l.041.074h.001l.05.105h.24a.8.8 0 0 1 .193-.155l.11-.05a.75.75 0 0 1 .355-.038l.713.096h.001q.116.016.222.066l.068.037.072.053.648.573v.002l.122.107a2.49 2.49 0 0 0-.886-2.784"]; export const InboxGlobeFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "inbox-globe-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); InboxGlobeFilledIcon.displayName = "Blueprint6.Icon.Next.InboxGlobeFilledIcon"; export default InboxGlobeFilledIcon; //# sourceMappingURL=inbox-globe-filled.js.map