@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.08 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 = ["M7.175 4.955A4.26 4.26 0 0 0 9.38 7.566a1.8 1.8 0 0 1-.36.352l.905 3.389.8 3a.75.75 0 0 1-1.45.385l-.651-2.443H7.376l-.651 2.443a.75.75 0 0 1-1.45-.385l.8-3 .904-3.389a1.747 1.747 0 0 1 .196-2.963M3.227 1.727a.75.75 0 0 1 1.062 1.06 5.25 5.25 0 0 0 0 7.425.75.75 0 0 1-1.062 1.06 6.75 6.75 0 0 1 0-9.545m10.286 7.26c.174.174.377.304.592.389a6.8 6.8 0 0 1-1.332 1.897.751.751 0 0 1-1.061-1.061 5.25 5.25 0 0 0 1.19-1.837zM4.995 3.493a.75.75 0 0 1 1.06 1.06 2.753 2.753 0 0 0 0 3.89.75.75 0 0 1-1.06 1.06 4.25 4.25 0 0 1 0-6.01m5.364 4.41q.432.094.891.095c.257 0 .508-.027.752-.071a4.25 4.25 0 0 1-.997 1.577.75.75 0 0 1-1.06-1.06c.162-.163.299-.346.414-.54M11.25.5a3.25 3.25 0 0 1 3.25 3.25c0 .754-.26 1.447-.691 1.998L15.28 7.22a.75.75 0 0 1-1.06 1.06l-1.59-1.59A3.25 3.25 0 1 1 11.25.5m0 1.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5"];
export const CellTowerMagnifyingGlassIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "cell-tower-magnifying-glass", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CellTowerMagnifyingGlassIcon.displayName = "Blueprint6.Icon.Next.CellTowerMagnifyingGlassIcon";
export default CellTowerMagnifyingGlassIcon;
//# sourceMappingURL=cell-tower-magnifying-glass.js.map