UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.07 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 = ["M13.513 9.486c.277.278.626.44.987.493V12.5a.5.5 0 0 1-.379.485l-3.371.843v-5.36q.245.03.5.031c.389 0 .765-.055 1.122-.153zM7.33 2.604A4.25 4.25 0 0 0 9.25 8v5.685l-2.5-1.25V2.315zm-2.08 9.598-3.129.783A.5.5 0 0 1 1.5 12.5v-9a.5.5 0 0 1 .379-.485l3.371-.843zm6-11.203a3.25 3.25 0 0 1 3.25 3.25c0 .754-.26 1.447-.691 1.998L15.28 7.72a.747.747 0 0 1-.78 1.234.74.74 0 0 1-.28-.174l-1.59-1.59a3.24 3.24 0 0 1-3.38-.383 3.24 3.24 0 0 1-1.015-3.772A3.25 3.25 0 0 1 11.25 1m0 1.5a1.75 1.75 0 0 0-1.742 1.914l.007.055a2 2 0 0 0 .055.267l.013.044q.018.057.04.11.009.027.02.051l.02.043q.04.087.09.168l.028.048.056.08.024.033a2 2 0 0 0 .174.195l.008.007a1.75 1.75 0 1 0 2.407-2.536l-.012-.011a2 2 0 0 0-.143-.12l-.026-.02a2 2 0 0 0-.16-.101l-.011-.008a2 2 0 0 0-.187-.09l-.033-.01a1.7 1.7 0 0 0-.366-.098l-.053-.008a2 2 0 0 0-.209-.013"]; export const MapMagnifyingGlassFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "map-magnifying-glass-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); MapMagnifyingGlassFilledIcon.displayName = "Blueprint6.Icon.Next.MapMagnifyingGlassFilledIcon"; export default MapMagnifyingGlassFilledIcon; //# sourceMappingURL=map-magnifying-glass-filled.js.map