@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.32 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.521.986a4.2 4.2 0 0 0-.874 1.652c-.6.15-1.16.395-1.665.722a.8.8 0 0 1-.055.26l-.698 1.647.413 1.101.282-.49v-.003a1.25 1.25 0 0 1 1.084-.625h.765c.192.508.479.97.838 1.363a1.24 1.24 0 0 1-.558.137h-.9l-.25.435.168.037.137.037a1.25 1.25 0 0 1 .656.515l.07.124V7.9l.17.35h.253a1.25 1.25 0 0 1 .39-.34l.09-.047a1.25 1.25 0 0 1 .686-.101l1.426.192h.002q.193.028.37.111l.114.062.002.001 2.77 1.703a6 6 0 0 0 .17-.566 1.75 1.75 0 0 0 1.51.114 7.024 7.024 0 0 1-6.886 5.59c-3.88 0-7.031-3.13-7.031-7C.97 4.26 3.865 1.233 7.52.987M2.87 5.915a5.5 5.5 0 0 0-.4 2.055c0 2.91 2.277 5.297 5.163 5.486l.096-.503-1.134-1.169-.012-.012a1.25 1.25 0 0 1-.226-1.359l.311-.697a1.3 1.3 0 0 1-.386-.156 1.25 1.25 0 0 1-.46-.514v-.001l-.185-.382-1.22-.262a1.25 1.25 0 0 1-.907-.78l-.001-.003zm4.925 4.953 1.108 1.142.012.011q.15.164.237.368l.05.137.031.144c.024.144.022.293-.005.437v.001l-.046.235a5.54 5.54 0 0 0 3.32-2.182L9.695 9.432l-1.186-.16zM10.75.5A3.25 3.25 0 0 1 14 3.749c0 .754-.26 1.447-.691 1.998L14.78 7.22a.75.75 0 1 1-1.06 1.06l-1.59-1.59A3.25 3.25 0 1 1 10.75.5m0 1.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5"];
export const EarthMagnifyingGlassIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "earth-magnifying-glass", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
EarthMagnifyingGlassIcon.displayName = "Blueprint6.Icon.Next.EarthMagnifyingGlassIcon";
export default EarthMagnifyingGlassIcon;
//# sourceMappingURL=earth-magnifying-glass.js.map