UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.79 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 = ["M8.001 9c.199 0 .39.08.53.22l2.25 2.25a.75.75 0 0 1-1.06 1.062l-.97-.971v2.689a.75.75 0 0 1-1.5 0v-2.69l-.97.97a.75.75 0 0 1-1.06-1.06l2.25-2.25.114-.094A.75.75 0 0 1 8 9m-.2-6.562a5.752 5.752 0 0 1 7.84 4.19 5.75 5.75 0 0 1-4.25 6.701q.05-.043.098-.09l.12-.134a1.75 1.75 0 0 0 .327-1.575 4 4 0 0 0 .426-.246 4.253 4.253 0 0 0 .645-6.539A4.251 4.251 0 0 0 5.75 7.75a.75.75 0 0 1-1.5 0q0-.635.137-1.247-.18.007-.359.038a2.75 2.75 0 0 0-2.253 2.364 2.75 2.75 0 0 0 1.595 2.85q.305.137.632.197c-.013.464.157.932.51 1.286v.001q.155.154.335.261H4.5a4.252 4.252 0 0 1-2.387-7.764 4.25 4.25 0 0 1 2.825-.714A5.75 5.75 0 0 1 7.8 2.438"]; export const CloudArrowUpIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "cloud-arrow-up", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CloudArrowUpIcon.displayName = "Blueprint6.Icon.Next.CloudArrowUpIcon"; export default CloudArrowUpIcon; //# sourceMappingURL=cloud-arrow-up.js.map