UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.92 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 = ["M5.333 2.25c.27 0 .534.088.75.25L7.75 3.75h2.067c.13.186.295.347.487.47L9.275 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.641c0 .448.17.896.512 1.237l.133.12c.687.56 1.7.521 2.341-.12l1.041-1.042c.312.484.854.805 1.472.805l.179-.009c.412-.042.78-.228 1.057-.506l.028.035.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 2a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0V4.56l-.264.263L11.03 7.03a.75.75 0 0 1-1.06-1.06l2.47-2.47h-1.19a.747.747 0 0 1-.75-.75.76.76 0 0 1 .331-.622A.75.75 0 0 1 11.25 2z"]; export const FolderOpenArrowOutFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "folder-open-arrow-out-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); FolderOpenArrowOutFilledIcon.displayName = "Blueprint6.Icon.Next.FolderOpenArrowOutFilledIcon"; export default FolderOpenArrowOutFilledIcon; //# sourceMappingURL=folder-open-arrow-out-filled.js.map