UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.78 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 9a.75.75 0 0 1 .75.75v2.69l.97-.97a.75.75 0 0 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 0 1 1.06-1.06l.97.97V9.75A.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.24 6.698l.088-.088.12-.133a1.75 1.75 0 0 0 .327-1.574q.22-.11.426-.247a4.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.286l.221.221a.7.7 0 0 1-.234.041 4.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 CloudArrowDownIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "cloud-arrow-down", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CloudArrowDownIcon.displayName = "Blueprint6.Icon.Next.CloudArrowDownIcon"; export default CloudArrowDownIcon; //# sourceMappingURL=cloud-arrow-down.js.map