UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.58 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 = ["M12.5 11.44V9.75a.75.75 0 0 1 1.5 0v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5h1.688L8.706 9.768l1.06-1.062zM9.06 8 8 9.06 6.939 8l1.06-1.06zM3.75 2.999c.199 0 .39.08.53.22l3.012 3.012-1.06 1.061L3.438 4.5H1.75a.75.75 0 0 1 0-1.501zM13.25 2q.074 0 .146.014l.004.002a.75.75 0 0 1 .6.734v3.5a.75.75 0 1 1-1.5-.001V4.56l-8.22 8.22a.75.75 0 0 1-.53.22h-2a.75.75 0 0 1 0-1.5h1.688l8.002-8H9.75a.75.75 0 0 1 0-1.5z"]; export const ArrowsShuffleIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "arrows-shuffle", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ArrowsShuffleIcon.displayName = "Blueprint6.Icon.Next.ArrowsShuffleIcon"; export default ArrowsShuffleIcon; //# sourceMappingURL=arrows-shuffle.js.map