@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.99 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 = ["M5.333 2.25c.27 0 .534.088.75.25L7.75 3.75h2.067c.131.187.295.348.487.472L9.276 5.25H7.5a.75.75 0 0 1-.45-.15l-1.8-1.35h-3v5.31l.688-1.744a1.25 1.25 0 0 1 .442-.58l.082-.054A1.25 1.25 0 0 1 4.11 6.5h4.64c0 .448.17.896.513 1.238l.133.12q.098.08.205.142H4.28l-1.678 4.25h9.604L14.111 8h-2.71q.18-.107.336-.262l1.041-1.042a1.748 1.748 0 0 0 2.71.291l.026.033.08.125q.071.13.111.272l.03.145.014.147a1.25 1.25 0 0 1-.09.506l-2.281 5.092a.75.75 0 0 1-.685.443H1.5A.75.75 0 0 1 .75 13V3.5A1.25 1.25 0 0 1 2 2.25zM14.25 2l.076.004q.053.006.103.02a.75.75 0 0 1 .571.727v3a.75.75 0 0 1-.73.749l-.02.001-.02-.001a.75.75 0 0 1-.706-.57.8.8 0 0 1-.024-.179v-1.19l-.264.263-2.206 2.207-.056.052A.751.751 0 0 1 9.97 5.971l2.47-2.47h-1.19a.748.748 0 0 1-.704-1.001.75.75 0 0 1 .627-.496L11.25 2z"];
export const FolderOpenArrowOutIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "folder-open-arrow-out", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
FolderOpenArrowOutIcon.displayName = "Blueprint6.Icon.Next.FolderOpenArrowOutIcon";
export default FolderOpenArrowOutIcon;
//# sourceMappingURL=folder-open-arrow-out.js.map