@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.6 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 = ["M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1M5.9 11.5a.88.88 0 0 0-.529.161c-.111.087-.121.16-.121.182v.919c.81.468 1.748.738 2.75.738s1.94-.27 2.75-.738v-.92c0-.021-.01-.094-.121-.18a.88.88 0 0 0-.53-.162zm2.1-9a5.5 5.5 0 0 0-4.217 9.03 1.78 1.78 0 0 1 .665-1.051A2.37 2.37 0 0 1 5.9 10h4.2a2.37 2.37 0 0 1 1.452.479c.334.26.58.626.664 1.05A5.5 5.5 0 0 0 8 2.5m0 1.25a2.75 2.75 0 1 1 0 5.5 2.75 2.75 0 0 1 0-5.5m0 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5"];
export const UserCircleIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "user-circle", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
UserCircleIcon.displayName = "Blueprint6.Icon.Next.UserCircleIcon";
export default UserCircleIcon;
//# sourceMappingURL=user-circle.js.map