UNPKG

@blueprintjs/icons

Version:

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

24 lines 3.71 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 = ["M4.25 3a.75.75 0 0 1 1.5 0v8.19l.004-.005.006-.006.007-.006.039-.04.006-.006.006-.006.059-.059.006-.006.007-.006.006-.007.006-.007.007-.006.007-.007.006-.006.007-.006.007-.007.005-.007.007-.006.007-.007.006-.007.007-.005.007-.007.005-.007.007-.006.007-.007.006-.007.007-.005.085-.085.006-.007.006-.006.007-.007.006-.007.007-.006.007-.006.006-.007.007-.006.039-.04.005-.006.007-.006.084-.084.006-.007.007-.005.127-.127.006-.007.007-.006.068-.068.006-.007.007-.006.03-.03.006-.007.007-.006.011-.012.006-.007.007-.006.018-.017.006-.007.006-.006.03-.03.006-.006.005-.006.007-.006.076-.076.005-.006.006-.006.006-.005.052-.051.005-.006.005-.005.067-.066.005-.006.006-.005.005-.006.005-.005.005-.006.006-.005.058-.057a.75.75 0 1 1 1.06 1.06l-.057.058-.005.006-.006.005-.005.005-.006.005-.005.006-.006.005-.066.067-.005.005-.006.005-.051.052-.005.006-.006.006-.006.005-.076.076-.006.007-.006.005-.007.006-.03.03-.005.006-.007.006-.017.018-.006.007-.007.006-.012.011-.006.007-.006.006-.03.03-.007.007-.006.006-.069.068-.006.007-.007.006-.126.127-.006.007-.007.006-.084.084-.006.007-.007.005-.039.04-.006.006-.007.006-.006.007-.006.007-.007.006-.007.007-.006.006-.007.006-.085.085-.005.007-.007.006-.007.007-.006.007-.007.005-.007.007-.006.007-.006.006-.007.007-.006.007-.007.006-.007.006-.006.007-.006.006-.007.007-.006.007-.007.005-.007.007-.006.007-.006.006-.06.059-.005.006-.007.006-.039.04-.006.006-.007.006-.077.077-.006.007-.006.006-.006.007-.007.006-.006.006-.007.006-.006.007-.006.006-.006.007-.007.006-.006.007-.007.005-.006.007-.007.006-.03.031-.007.007-.007.006-.018.019-.006.006-.007.006-.043.043-.006.007-.006.006-.109.108-.006.007-.007.006-.087.088-.005.006-.006.005-.052.052-.005.005-.006.005-.039.04-.005.005-.005.005-.065.065-.005.005-.006.005-.02.02-.005.007-.006.004-.01.01-.005.006-.005.005-.02.02-.005.005-.006.005-.044.044-.004.005-.004.004-.02.02-.004.004-.005.004-.01.01-.003.005-.005.004-.005.005-.004.005-.005.004-.044.043-.004.005-.005.004-.004.004-.004.005-.004.004-.037.036-.003.005-.016.016-.004.002-.034.035-.003.004-.004.003-.041.04-.003.004-.004.003-.006.006-.003.004-.004.003-.073.073-.002.003-.003.002-.014.015-.002.003-.003.002-.006.006-.001.001-.002.002-.008.007v.002l-.003.001-.002.002v.002l-.003.001-.008.009-.001.002h-.002l-.001.002-.001.002H5.55l-.004.005-.001.002-.003.003-.005.004-.008.007a.75.75 0 0 1-1.06 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.22 1.22zm6 10V4.94L9.055 6.254a.75.75 0 0 1-1.11-1.01l2.5-2.75.056-.055a.75.75 0 0 1 1.054.055l2.5 2.75a.75.75 0 0 1-1.11 1.01L11.75 4.939V13a.75.75 0 0 1-1.5 0"]; export const ArrowsDownUpIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "arrows-down-up", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ArrowsDownUpIcon.displayName = "Blueprint6.Icon.Next.ArrowsDownUpIcon"; export default ArrowsDownUpIcon; //# sourceMappingURL=arrows-down-up.js.map