UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.12 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 = ["M10.333 7.749a2.08 2.08 0 0 1 1.589.737 2.075 2.075 0 0 1 .058 2.618 2.08 2.08 0 0 1 1.437 1.979V14a.75.75 0 0 1-.194.5.75.75 0 0 1-.556.25H8a.75.75 0 0 1-.75-.75v-.917a2.08 2.08 0 0 1 1.435-1.979 2.07 2.07 0 0 1-.435-1.271 2.083 2.083 0 0 1 2.083-2.084m-1 4.751a.584.584 0 0 0-.583.583v.167h3.167v-.167a.585.585 0 0 0-.584-.583zm1-3.25a.58.58 0 0 0-.583.583.578.578 0 0 0 .89.493.5.5 0 0 0 .36-.476.5.5 0 0 0-.267-.439.58.58 0 0 0-.4-.161M12 1.756c1.03 0 1.618 1.176 1 2l-2.267 3.02a3.07 3.07 0 0 0-2.427.737L11.5 3.256h-9l3.6 4.8c.097.13.15.288.15.45v4.249l.021-.017a3 3 0 0 0-.021.345v.918q.001.238.064.464c-.749.197-1.564-.351-1.564-1.21v-4.5l-3.75-5c-.618-.823-.03-1.999 1-2zm1.847 9.546a1.83 1.83 0 0 1 1.407 1.781V14a.5.5 0 0 1-.5.5h-.411q.072-.237.074-.499v-.918l-.004-.153a3.1 3.1 0 0 0-.566-1.628m-1-3.25a1.832 1.832 0 0 1 .868 3.077q-.046-.059-.096-.115l-.105-.11a3 3 0 0 0-.226-.204c.057-.193.1-.394.117-.602l.012-.265c0-.664-.213-1.278-.57-1.781"]; export const FunnelUsersIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "funnel-users", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); FunnelUsersIcon.displayName = "Blueprint6.Icon.Next.FunnelUsersIcon"; export default FunnelUsersIcon; //# sourceMappingURL=funnel-users.js.map