@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.73 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 = ["M6.938 2.75a4.3 4.3 0 0 0-.18 1.5H4.646a.25.25 0 0 0-.227.147L2.91 7.75h1.84a.75.75 0 0 1 .75.75v1.25h5V8.5q.002-.147.053-.274a4.2 4.2 0 0 0 1.57-.13l1.14 1.14a1.75 1.75 0 0 0 1.737.44V13a.75.75 0 0 1-.75.75H1.75A.75.75 0 0 1 1 13V8.5a.75.75 0 0 1 .066-.308l1.985-4.41A1.75 1.75 0 0 1 4.646 2.75zM11 .749a3.25 3.25 0 0 1 3.25 3.25c0 .754-.26 1.447-.691 1.998L15.03 7.47a.75.75 0 1 1-1.06 1.06l-1.59-1.59A3.25 3.25 0 1 1 11 .75m0 1.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5"];
export const InboxMagnifyingGlassFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "inbox-magnifying-glass-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
InboxMagnifyingGlassFilledIcon.displayName = "Blueprint6.Icon.Next.InboxMagnifyingGlassFilledIcon";
export default InboxMagnifyingGlassFilledIcon;
//# sourceMappingURL=inbox-magnifying-glass-filled.js.map