@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.52 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 = ["M3 1.121c1.036 0 1.875.84 1.875 1.876 0 .29-.069.562-.186.807l1.947 1.953a2.62 2.62 0 0 1 3.383.563l1.364-.667a1.875 1.875 0 1 1 .513 1.14l-1.332.651q.06.268.061.553a2.625 2.625 0 0 1-3.344 2.524l-.917 1.692a1.875 1.875 0 1 1-1.112-.572l.943-1.74a2.62 2.62 0 0 1-.442-3.257L3.806 4.687A1.9 1.9 0 0 1 3 4.873a1.875 1.875 0 0 1 0-3.75"];
export const NetworkHubFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "network-hub-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
NetworkHubFilledIcon.displayName = "Blueprint6.Icon.Next.NetworkHubFilledIcon";
export default NetworkHubFilledIcon;
//# sourceMappingURL=network-hub-filled.js.map