@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.72 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.5.5c1.495 0 2.58.279 3.585 1.218.922.86 1.746 2.26 2.898 4.287l.001-.001A2.001 2.001 0 0 1 10.75 8.32v4.93a2 2 0 0 1-4 0v-2.315q-.244.063-.5.065c-.53 0-1.04-.211-1.414-.586a2 2 0 0 1-.383-.543A2 2 0 0 1 1.75 8V6.25A5.75 5.75 0 0 1 7.5.5m0 1.5a4.25 4.25 0 0 0-4.25 4.25V8a.5.5 0 0 0 .854.354q.052-.053.094-.092l.055-.052a.749.749 0 0 1 1.497.04V9a.5.5 0 0 0 1 0v-.25a.75.75 0 0 1 1.5 0v4.5a.5.5 0 0 0 1 0v-7.5a.75.75 0 0 1 1.387-.396l1.168 1.875.01.017a.5.5 0 0 0 .906-.411l-.04-.089c-1.192-2.098-1.902-3.262-2.62-3.933C9.426 2.222 8.766 2 7.5 2"];
export const HandPointDownIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "hand-point-down", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
HandPointDownIcon.displayName = "Blueprint6.Icon.Next.HandPointDownIcon";
export default HandPointDownIcon;
//# sourceMappingURL=hand-point-down.js.map