UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.6 kB
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-decimals-arrow-left" 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="M7.873 2.060 C 7.136 2.200,6.468 2.565,5.958 3.105 C 5.562 3.525,5.318 3.949,5.131 4.548 L 5.020 4.900 5.020 7.000 L 5.020 9.100 5.131 9.452 C 5.594 10.930,6.809 11.902,8.300 11.987 C 9.322 12.046,10.223 11.698,10.960 10.960 C 11.516 10.404,11.836 9.786,11.959 9.031 C 12.012 8.700,12.012 5.300,11.959 4.969 C 11.736 3.596,10.713 2.466,9.378 2.118 C 8.959 2.009,8.280 1.983,7.873 2.060 M9.119 4.143 C 9.415 4.278,9.727 4.592,9.867 4.896 L 9.980 5.140 9.980 7.000 L 9.980 8.860 9.867 9.104 C 9.724 9.413,9.415 9.721,9.100 9.868 C 8.893 9.965,8.810 9.980,8.500 9.980 C 8.190 9.980,8.107 9.965,7.900 9.868 C 7.585 9.721,7.276 9.413,7.133 9.104 L 7.020 8.860 7.020 7.000 L 7.020 5.140 7.132 4.900 C 7.329 4.477,7.750 4.129,8.174 4.039 C 8.441 3.982,8.870 4.030,9.119 4.143 M2.695 10.055 C 2.464 10.130,2.255 10.300,2.128 10.516 C 2.037 10.672,2.020 10.746,2.020 11.000 C 2.020 11.257,2.036 11.327,2.133 11.492 C 2.651 12.374,3.998 12.018,3.998 11.000 C 3.998 10.623,3.792 10.281,3.463 10.112 C 3.265 10.010,2.911 9.984,2.695 10.055 M12.640 14.069 C 12.488 14.121,12.205 14.384,10.825 15.755 C 9.040 17.530,9.001 17.578,9.001 18.000 C 9.001 18.420,9.043 18.472,10.806 20.226 C 11.694 21.109,12.481 21.862,12.555 21.899 C 13.010 22.128,13.601 21.944,13.867 21.492 C 13.964 21.327,13.980 21.258,13.979 21.000 C 13.979 20.787,13.957 20.660,13.904 20.560 C 13.864 20.483,13.514 20.101,13.127 19.710 L 12.423 19.000 16.301 18.998 C 19.437 18.997,20.209 18.986,20.330 18.943 C 20.551 18.864,20.744 18.702,20.869 18.489 C 20.964 18.328,20.980 18.256,20.980 18.000 C 20.980 17.746,20.963 17.672,20.872 17.516 C 20.813 17.415,20.698 17.282,20.618 17.221 C 20.320 16.994,20.435 17.000,16.265 17.000 L 12.423 17.000 13.127 16.290 C 13.514 15.900,13.864 15.517,13.904 15.440 C 13.957 15.340,13.979 15.213,13.979 15.000 C 13.980 14.745,13.964 14.672,13.872 14.516 C 13.617 14.083,13.121 13.902,12.640 14.069 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const DecimalsArrowLeftIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const DecimalsArrowLeft = DecimalsArrowLeftIcon;