@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.14 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/* eslint-disable no-shadow-restricted-names */
import { Icon } from "@react-three/uikit";
import { forwardRef } from "react";
const text = `<svg class="lucide lucide-arrow-down-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6.695 3.057 C 6.466 3.129,6.256 3.299,6.128 3.516 L 6.020 3.700 6.010 10.638 L 5.999 17.575 4.770 16.354 C 3.688 15.279,3.516 15.124,3.343 15.066 C 2.863 14.905,2.382 15.084,2.128 15.516 C 2.036 15.672,2.020 15.745,2.021 16.000 C 2.021 16.212,2.043 16.341,2.095 16.440 C 2.135 16.517,3.116 17.531,4.274 18.694 C 6.567 20.996,6.571 20.999,7.000 20.999 C 7.429 20.999,7.433 20.996,9.726 18.694 C 10.884 17.531,11.865 16.517,11.905 16.440 C 11.957 16.341,11.979 16.212,11.979 16.000 C 11.980 15.745,11.964 15.672,11.872 15.516 C 11.618 15.084,11.137 14.905,10.657 15.066 C 10.484 15.124,10.312 15.279,9.230 16.354 L 8.001 17.575 7.990 10.638 L 7.980 3.700 7.872 3.516 C 7.628 3.101,7.150 2.915,6.695 3.057 M16.580 3.096 C 16.422 3.172,15.940 3.634,14.274 5.306 C 13.116 6.469,12.138 7.481,12.101 7.555 C 11.872 8.010,12.056 8.601,12.508 8.867 C 12.673 8.964,12.742 8.980,13.000 8.979 C 13.213 8.979,13.341 8.957,13.440 8.905 C 13.517 8.864,14.124 8.289,14.790 7.627 L 15.999 6.423 16.010 13.364 L 16.020 20.306 16.141 20.503 C 16.543 21.156,17.457 21.156,17.859 20.503 L 17.980 20.306 17.990 13.364 L 18.001 6.423 19.210 7.627 C 19.876 8.289,20.483 8.864,20.560 8.905 C 20.659 8.957,20.787 8.979,21.000 8.979 C 21.258 8.980,21.327 8.964,21.492 8.867 C 21.714 8.737,21.901 8.498,21.965 8.264 C 22.019 8.061,21.989 7.733,21.899 7.555 C 21.862 7.481,20.884 6.469,19.726 5.306 C 17.433 3.004,17.429 3.001,17.000 3.001 C 16.851 3.001,16.716 3.031,16.580 3.096 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowDownUpIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowDownUp = ArrowDownUpIcon;