UNPKG

@blueprintjs/icons

Version:

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

24 lines 2 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 = ["M3.986 8.875c.3.519.859.87 1.5.874v3.001A1.25 1.25 0 0 1 4.236 14H1.5a.75.75 0 0 1 0-1.5h2.486zm8 3.625h2.488a.75.75 0 0 1 0 1.5h-2.738a1.25 1.25 0 0 1-.884-.366l-.082-.092a1.25 1.25 0 0 1-.284-.792v-2.262l1.251-1.25.032-.033.051-.057q.02-.02.036-.043.047-.057.07-.093l.02-.033.04-.06zM7.72 5.22a.75.75 0 0 1 1.06 0l2.25 2.25q.105.106.16.234l.011.038a.7.7 0 0 1 .047.232L11.25 8l-.006.085-.006.034q-.005.03-.013.06a.7.7 0 0 1-.121.261l-.022.034-.052.056-2.25 2.25a.747.747 0 0 1-1.06 0 .75.75 0 0 1 0-1.06l.97-.97H5.5l-.014-.001A.75.75 0 0 1 5.5 7.25h3.19l-.97-.97a.75.75 0 0 1 0-1.06M4.236 2.5a1.25 1.25 0 0 1 1.25 1.25v2.5a1.75 1.75 0 0 0-1.5.874V4H1.5a.75.75 0 0 1 0-1.5zm10.238 0a.75.75 0 0 1 0 1.5h-2.488v3.08a1.8 1.8 0 0 0-.249-.317l-1.25-1.251V3.75a1.25 1.25 0 0 1 1.25-1.25z"]; export const ArrowBetweenBracketsIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "arrow-between-brackets", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ArrowBetweenBracketsIcon.displayName = "Blueprint6.Icon.Next.ArrowBetweenBracketsIcon"; export default ArrowBetweenBracketsIcon; //# sourceMappingURL=arrow-between-brackets.js.map