@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.16 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 = ["M11.6 8.778a3.7 3.7 0 0 1 2.075.954 3.33 3.33 0 0 1 1.075 2.435v1.583a.75.75 0 0 1-1.5 0v-1.583a4.33 4.33 0 0 0-1.65-3.389M8.643 8.75c.627 0 1.241.156 1.783.447q.407.219.749.535.284.266.498.582a3.3 3.3 0 0 1 .577 1.853v1.583a.75.75 0 0 1-.75.75H2a.75.75 0 0 1-.75-.75v-1.583c0-.924.394-1.799 1.075-2.435a3.72 3.72 0 0 1 2.532-.982zm-3.786 1.5c-.574 0-1.117.213-1.508.58-.39.363-.599.846-.599 1.337V13h8v-.833c0-.491-.209-.974-.599-1.338a2.22 2.22 0 0 0-1.508-.579zm1.893-9A3.24 3.24 0 0 1 9.5 2.77a3.24 3.24 0 0 1 0 3.46l.001-.001A3.26 3.26 0 0 1 6.75 7.75a3.25 3.25 0 1 1 0-6.5m0 1.5q-.129.001-.252.02h-.005a1.74 1.74 0 0 0-1.024.54l-.05.053-.058.075a2 2 0 0 0-.092.132l-.034.054a2 2 0 0 0-.079.153l-.028.068q-.018.044-.032.089l-.02.06q-.016.053-.03.109l-.014.06-.003.015-.02.143-.001.013a2 2 0 0 0-.001.317q.004.043.01.085l.015.1.015.06q.012.056.028.11l.008.024a1.7 1.7 0 0 0 .154.347l.023.038a2 2 0 0 0 .188.252 1.75 1.75 0 0 0 2.924-1.822l-.008-.02A1.75 1.75 0 0 0 6.75 2.75m2.748-1.49a3.25 3.25 0 0 1-.003 6.48 4.24 4.24 0 0 0 .003-6.48"];
export const UsersIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "users", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
UsersIcon.displayName = "Blueprint6.Icon.Next.UsersIcon";
export default UsersIcon;
//# sourceMappingURL=users.js.map