@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.3 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-big-up-dash" 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="M11.640 4.068 C 11.484 4.121,10.980 4.609,7.794 7.795 C 4.298 11.291,4.126 11.470,4.059 11.675 C 3.889 12.206,4.155 12.759,4.670 12.943 C 4.785 12.984,5.186 12.997,6.408 12.998 L 7.995 13.000 8.008 14.150 L 8.020 15.300 8.131 15.489 C 8.256 15.702,8.449 15.864,8.670 15.943 C 8.891 16.022,15.109 16.022,15.330 15.943 C 15.551 15.864,15.744 15.702,15.869 15.489 L 15.980 15.300 15.992 14.150 L 16.005 13.000 17.577 13.000 C 19.283 13.000,19.336 12.994,19.623 12.775 C 19.700 12.716,19.813 12.585,19.872 12.484 C 19.963 12.328,19.980 12.254,19.980 12.000 C 19.980 11.746,19.964 11.672,19.873 11.520 C 19.811 11.417,18.229 9.807,16.153 7.735 C 12.851 4.441,12.523 4.125,12.343 4.065 C 12.102 3.986,11.878 3.986,11.640 4.068 M14.300 8.720 L 16.580 11.000 15.736 11.000 C 14.812 11.000,14.634 11.029,14.382 11.221 C 14.302 11.282,14.187 11.415,14.128 11.516 L 14.020 11.700 14.008 12.850 L 13.995 14.000 12.000 14.000 L 10.005 14.000 9.992 12.850 L 9.980 11.700 9.872 11.516 C 9.813 11.415,9.698 11.282,9.618 11.221 C 9.366 11.029,9.188 11.000,8.264 11.000 L 7.420 11.000 9.700 8.720 C 10.954 7.466,11.989 6.440,12.000 6.440 C 12.011 6.440,13.046 7.466,14.300 8.720 M8.695 18.057 C 8.466 18.129,8.256 18.299,8.128 18.516 C 8.037 18.672,8.020 18.746,8.020 19.000 C 8.020 19.256,8.036 19.328,8.131 19.489 C 8.256 19.702,8.449 19.864,8.670 19.943 C 8.891 20.022,15.109 20.022,15.330 19.943 C 15.551 19.864,15.744 19.702,15.869 19.489 C 15.964 19.328,15.980 19.256,15.980 19.000 C 15.980 18.746,15.963 18.672,15.872 18.516 C 15.740 18.293,15.533 18.128,15.290 18.055 C 15.030 17.977,8.945 17.979,8.695 18.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowBigUpDashIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowBigUpDash = ArrowBigUpDashIcon;