@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.92 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-monitor-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="M3.499 2.043 C 2.380 2.232,1.461 3.048,1.114 4.160 L 1.020 4.460 1.020 10.000 L 1.020 15.540 1.114 15.840 C 1.418 16.816,2.149 17.554,3.140 17.886 L 3.420 17.980 7.210 17.991 L 11.000 18.003 11.000 19.001 L 11.000 20.000 9.446 20.000 C 7.758 20.000,7.658 20.011,7.382 20.221 C 7.302 20.282,7.187 20.415,7.128 20.516 C 7.037 20.672,7.020 20.746,7.020 21.000 C 7.020 21.256,7.036 21.328,7.131 21.489 C 7.256 21.702,7.449 21.864,7.670 21.943 C 7.892 22.022,16.108 22.022,16.330 21.943 C 16.551 21.864,16.744 21.702,16.869 21.489 C 16.964 21.328,16.980 21.256,16.980 21.000 C 16.980 20.746,16.963 20.672,16.872 20.516 C 16.813 20.415,16.698 20.282,16.618 20.221 C 16.342 20.011,16.242 20.000,14.554 20.000 L 13.000 20.000 13.000 19.001 L 13.000 18.003 16.790 17.991 L 20.580 17.980 20.860 17.886 C 21.851 17.554,22.582 16.816,22.886 15.840 L 22.980 15.540 22.980 10.000 L 22.980 4.460 22.886 4.160 C 22.581 3.182,21.832 2.428,20.861 2.121 L 20.540 2.020 12.120 2.014 C 7.489 2.011,3.609 2.024,3.499 2.043 M20.310 4.061 C 20.589 4.144,20.856 4.411,20.939 4.690 C 20.992 4.868,21.000 5.546,21.000 10.001 C 21.000 14.212,20.990 15.139,20.945 15.290 C 20.872 15.533,20.707 15.740,20.484 15.872 L 20.300 15.980 12.000 15.980 L 3.700 15.980 3.516 15.872 C 3.303 15.747,3.141 15.550,3.058 15.316 C 2.969 15.061,2.971 4.993,3.061 4.690 C 3.140 4.421,3.412 4.143,3.673 4.063 C 3.833 4.014,5.030 4.005,11.983 4.003 C 19.144 4.000,20.130 4.007,20.310 4.061 M11.580 6.096 C 11.424 6.171,11.029 6.545,9.774 7.806 C 8.891 8.694,8.135 9.483,8.095 9.560 C 8.043 9.659,8.021 9.788,8.021 10.000 C 8.020 10.258,8.036 10.327,8.133 10.492 C 8.263 10.714,8.502 10.901,8.736 10.965 C 8.939 11.019,9.267 10.989,9.445 10.899 C 9.519 10.861,9.899 10.514,10.289 10.128 L 10.997 9.426 11.009 11.366 L 11.020 13.306 11.141 13.503 C 11.543 14.156,12.457 14.156,12.859 13.503 L 12.980 13.306 12.991 11.366 L 13.003 9.426 13.711 10.128 C 14.101 10.514,14.483 10.864,14.560 10.904 C 14.660 10.957,14.787 10.979,15.000 10.979 C 15.258 10.980,15.327 10.964,15.492 10.867 C 15.714 10.737,15.901 10.498,15.965 10.264 C 16.019 10.061,15.989 9.733,15.899 9.555 C 15.862 9.481,15.109 8.694,14.226 7.806 C 12.472 6.043,12.420 6.001,12.000 6.001 C 11.851 6.001,11.716 6.031,11.580 6.096 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MonitorUpIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MonitorUp = MonitorUpIcon;