@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.71 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 = ["M7.25.75a2 2 0 0 1 2 2v2.315a2 2 0 0 1 1.914.52c.16.16.287.345.383.544A2 2 0 0 1 14.25 8v1.75A5.75 5.75 0 0 1 8.5 15.5c-1.494 0-2.579-.279-3.585-1.218-.921-.86-1.746-2.26-2.898-4.287v.001A2 2 0 0 1 5.25 7.68V2.75a2 2 0 0 1 2-2m0 1.5a.5.5 0 0 0-.5.5v7.5a.75.75 0 0 1-1.386.396L4.196 8.772l-.01-.017a.501.501 0 0 0-.906.411l.04.089c1.192 2.098 1.902 3.262 2.62 3.933.634.591 1.294.813 2.56.813a4.253 4.253 0 0 0 4.25-4.25V8a.5.5 0 0 0-.853-.354l-.095.092-.054.052a.749.749 0 0 1-1.497-.04V7a.5.5 0 0 0-1 0v.25a.75.75 0 0 1-1.5 0v-4.5a.5.5 0 0 0-.5-.5"];
export const HandPointUpIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "hand-point-up", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
HandPointUpIcon.displayName = "Blueprint6.Icon.Next.HandPointUpIcon";
export default HandPointUpIcon;
//# sourceMappingURL=hand-point-up.js.map