UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.98 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 = ["M12 1.756c1.03 0 1.618 1.176 1 2L10.377 7.25l-.044-.002A2.835 2.835 0 0 0 7.5 10.083l.008.214c.025.333.109.649.239.94a3 3 0 0 0-.209.155l-.208.188c-.53.53-.83 1.252-.83 2.003v.418q.002.195.05.375c-.802.4-1.8-.17-1.8-1.12V8.755l-3.75-5c-.618-.823-.03-1.999 1-2zm1.498 10.002a1.835 1.835 0 0 1 1.669 1.825V14a.5.5 0 0 1-.5.5h-.587a1.5 1.5 0 0 0 .087-.499v-.418l-.014-.28a2.84 2.84 0 0 0-.628-1.515zm-3.165-3.509c.62 0 1.169.31 1.5.782a1.825 1.825 0 0 1 0 2.102 1.86 1.86 0 0 1-.74.617h.24a1.834 1.834 0 0 1 1.834 1.833V14a.5.5 0 0 1-.5.5H8a.5.5 0 0 1-.5-.5v-.417a1.834 1.834 0 0 1 1.833-1.833h.24A1.84 1.84 0 0 1 8.5 10.083a1.835 1.835 0 0 1 1.833-1.834m2.166.009a1.83 1.83 0 0 1 .857 3.344l-.02-.022a3 3 0 0 0-.417-.344c.13-.29.215-.606.24-.94l.008-.213c0-.695-.252-1.332-.668-1.825"]; export const FunnelUsersFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "funnel-users-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); FunnelUsersFilledIcon.displayName = "Blueprint6.Icon.Next.FunnelUsersFilledIcon"; export default FunnelUsersFilledIcon; //# sourceMappingURL=funnel-users-filled.js.map