@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.76 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 = ["M8 5.5a1 1 0 0 1 1 1 1 1 0 0 1-.2.595l1.125 4.212.8 3a.75.75 0 0 1-1.45.386l-.651-2.443H7.376l-.651 2.443a.75.75 0 0 1-1.45-.386l.8-3 1.123-4.212A1 1 0 0 1 8 5.5M3.227 1.727a.75.75 0 0 1 1.062 1.06 5.253 5.253 0 0 0 0 7.425.75.75 0 0 1-1.062 1.06 6.75 6.75 0 0 1 0-9.545m8.485 0a.75.75 0 0 1 1.061 0 6.75 6.75 0 0 1 0 9.546.751.751 0 0 1-1.061-1.061 5.25 5.25 0 0 0 0-7.425.75.75 0 0 1 0-1.06M4.995 3.494a.75.75 0 0 1 1.06 1.062 2.75 2.75 0 0 0 0 3.888.75.75 0 0 1-1.06 1.06 4.25 4.25 0 0 1 0-6.01m4.95 0a.75.75 0 0 1 1.06 0 4.253 4.253 0 0 1 0 6.01.75.75 0 0 1-1.06-1.06 2.75 2.75 0 0 0 0-3.888.75.75 0 0 1 0-1.062"];
export const CellTowerIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "cell-tower", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CellTowerIcon.displayName = "Blueprint6.Icon.Next.CellTowerIcon";
export default CellTowerIcon;
//# sourceMappingURL=cell-tower.js.map