UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.04 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.127 9.013a1 1 0 0 1 .162.046q.044.02.084.044l.044.025.113.092 2.25 2.249a.75.75 0 1 1-1.06 1.06l-.97-.97v2.69a.75.75 0 0 1-1.5 0v-2.69l-.97.97a.75.75 0 1 1-1.06-1.06l2.25-2.25a1 1 0 0 1 .114-.093l.095-.055q.01-.002.017-.006l.034-.013a1 1 0 0 1 .102-.03l.035-.01.038-.005L8 9zM7.8 2.437a5.75 5.75 0 0 1 6.266 1.248 5.75 5.75 0 0 1-2.681 9.644l.102-.092c.64-.64.68-1.655.12-2.342l-.12-.133-2.25-2.25a2 2 0 0 0-.135-.12l-.128-.094c-.04-.028-.08-.047-.101-.059h-.001l-.01-.008-.007-.004-.038-.022a1.8 1.8 0 0 0-.646-.195L8 8a1.8 1.8 0 0 0-.378.043l-.015.004-.016.004-.005.002h-.003c-.06.015-.134.035-.213.066l-.007.002-.016.007-.057.023-.037.016-.07.036-.095.055-.06.036a2 2 0 0 0-.266.219l-2.25 2.249a1.75 1.75 0 0 0 0 2.475l.133.121q.098.08.204.142H4.5a4.252 4.252 0 0 1-2.386-7.764 4.25 4.25 0 0 1 2.825-.714A5.76 5.76 0 0 1 7.8 2.437"]; export const CloudArrowUpFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "cloud-arrow-up-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CloudArrowUpFilledIcon.displayName = "Blueprint6.Icon.Next.CloudArrowUpFilledIcon"; export default CloudArrowUpFilledIcon; //# sourceMappingURL=cloud-arrow-up-filled.js.map