@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.73 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 = ["M6.004 2.016A2 2 0 0 1 8.32 5.25h4.93a2 2 0 0 1 0 4h-2.315q.063.244.065.5a2 2 0 0 1-.586 1.415 2 2 0 0 1-.543.382A2 2 0 0 1 8 14.25H6.25A5.75 5.75 0 0 1 .5 8.5c0-1.494.279-2.579 1.218-3.585.86-.921 2.26-1.746 4.287-2.898zm1.12 1.256a.5.5 0 0 0-.289.008l-.089.04C4.647 4.512 3.483 5.222 2.812 5.94 2.222 6.574 2 7.234 2 8.5a4.25 4.25 0 0 0 4.25 4.25H8a.5.5 0 0 0 .354-.853l-.092-.095-.052-.054a.749.749 0 0 1 .04-1.497H9a.5.5 0 0 0 0-1h-.25a.75.75 0 0 1 0-1.5h4.5a.5.5 0 0 0 0-1h-7.5a.75.75 0 0 1-.396-1.387l1.875-1.168.017-.01a.501.501 0 0 0-.122-.914"];
export const HandPointRightIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "hand-point-right", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
HandPointRightIcon.displayName = "Blueprint6.Icon.Next.HandPointRightIcon";
export default HandPointRightIcon;
//# sourceMappingURL=hand-point-right.js.map