@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.21 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 10.5q.068 0 .132.012l.016.003.04.011q.05.012.098.03.044.021.083.045.087.047.161.119l1.5 1.5a.75.75 0 1 1-1.06 1.06l-.22-.22v1.69a.75.75 0 0 1-1.5 0v-1.69l-.22.22a.75.75 0 1 1-1.06-1.06l1.5-1.5a.8.8 0 0 1 .16-.12q.037-.023.078-.041l.01-.004q.046-.017.094-.029l.039-.011.016-.003A1 1 0 0 1 8 10.5m.09-8.75a.75.75 0 0 1 0 1.5h-.604a.705.705 0 0 0-.693.578L6.582 5.25h.781a.75.75 0 0 1 0 1.5H6.36l-.582 3.916-.004.024a2.206 2.206 0 0 1-2.169 1.81H3A.75.75 0 0 1 3 11h.604a.704.704 0 0 0 .694-.578l.545-3.672H4.09a.75.75 0 0 1 0-1.5h.975l.247-1.666.004-.023a2.206 2.206 0 0 1 2.17-1.811zM10 5.25c.228 0 .519.056.76.29.138.132.219.288.27.414.338-.321.85-.704 1.47-.704a.75.75 0 0 1 0 1.5c.003 0-.036 0-.127.05a1.7 1.7 0 0 0-.327.258c-.158.153-.314.34-.46.535l.143.376c.081.218.142.375.198.494l.02.037h.303a.75.75 0 0 1 0 1.5h-.5c-.717 0-1.04-.6-1.182-.901q0-.003-.002-.005l-.008.012C10.256 9.481 9.742 10 9 10a.75.75 0 0 1 0-1.5c.008 0 .13-.013.389-.333.194-.241.344-.49.522-.774-.09-.262-.155-.488-.2-.643H9.5a.75.75 0 0 1 0-1.5z"];
export const FunctionArrowUpIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "function-arrow-up", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
FunctionArrowUpIcon.displayName = "Blueprint6.Icon.Next.FunctionArrowUpIcon";
export default FunctionArrowUpIcon;
//# sourceMappingURL=function-arrow-up.js.map