UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.7 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 = ["M9.75 1.75A5.75 5.75 0 0 1 15.5 7.5c0 1.495-.279 2.58-1.218 3.585-.86.922-2.26 1.746-4.287 2.898l.001.001A2.001 2.001 0 0 1 7.68 10.75H2.75a2 2 0 0 1 0-4h2.315a2 2 0 0 1 .52-1.914c.16-.16.345-.286.544-.383A2 2 0 0 1 8 1.75zM8 3.25a.5.5 0 0 0-.354.854q.053.052.092.094l.052.055a.749.749 0 0 1-.04 1.497H7a.5.5 0 0 0 0 1h.25a.75.75 0 0 1 0 1.5h-4.5a.5.5 0 0 0 0 1h7.5a.75.75 0 0 1 .396 1.387l-1.875 1.168-.017.01a.5.5 0 0 0 .411.906l.089-.04c2.098-1.192 3.262-1.902 3.933-2.62.591-.634.813-1.295.813-2.561a4.25 4.25 0 0 0-4.25-4.25z"]; export const HandPointLeftIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "hand-point-left", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); HandPointLeftIcon.displayName = "Blueprint6.Icon.Next.HandPointLeftIcon"; export default HandPointLeftIcon; //# sourceMappingURL=hand-point-left.js.map