@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.91 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 9a.75.75 0 0 1 .75.75v2.69l.97-.97a.75.75 0 1 1 1.06 1.061l-2.25 2.25a1 1 0 0 1-.113.091q-.022.014-.044.024-.04.025-.084.045a1 1 0 0 1-.162.046.8.8 0 0 1-.222.006l-.038-.006-.035-.009a1 1 0 0 1-.102-.03l-.034-.014-.017-.005-.095-.055a1 1 0 0 1-.114-.094l-2.25-2.249a.75.75 0 1 1 1.06-1.06l.97.97V9.75A.75.75 0 0 1 8 9m-.2-6.563a5.75 5.75 0 0 1 6.266 1.248 5.75 5.75 0 0 1-2.668 9.641l.09-.088.12-.133a1.753 1.753 0 0 0-.12-2.342l-.135-.121a1.75 1.75 0 0 0-1.603-.319V9.75a1.75 1.75 0 0 0-1.572-1.741L8 7.999a1.75 1.75 0 0 0-1.75 1.75v.574a1.75 1.75 0 0 0-1.605.319l-.133.12a1.75 1.75 0 0 0 0 2.476l.262.262H4.5a4.252 4.252 0 0 1-2.387-7.764 4.25 4.25 0 0 1 2.825-.714A5.76 5.76 0 0 1 7.8 2.437"];
export const CloudArrowDownFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "cloud-arrow-down-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CloudArrowDownFilledIcon.displayName = "Blueprint6.Icon.Next.CloudArrowDownFilledIcon";
export default CloudArrowDownFilledIcon;
//# sourceMappingURL=cloud-arrow-down-filled.js.map