@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.49 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-tablets" 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.380 1.043 C 3.784 1.299,1.681 3.215,1.114 5.840 C 0.984 6.446,0.984 7.554,1.114 8.160 C 1.639 10.591,3.413 12.364,5.840 12.885 C 6.446 13.015,7.554 13.015,8.160 12.885 C 9.397 12.620,10.412 12.068,11.269 11.195 C 12.109 10.340,12.626 9.369,12.885 8.160 C 13.015 7.554,13.015 6.446,12.885 5.840 C 12.569 4.369,11.786 3.106,10.660 2.257 C 9.390 1.298,7.945 0.888,6.380 1.043 M7.605 3.058 C 8.030 3.123,8.377 3.230,8.740 3.410 C 8.872 3.476,8.988 3.537,8.998 3.546 C 9.018 3.565,3.595 9.000,3.556 9.000 C 3.524 9.000,3.262 8.429,3.181 8.182 C 3.099 7.933,3.000 7.289,3.000 7.000 C 3.000 6.680,3.103 6.050,3.203 5.755 C 3.444 5.048,3.937 4.337,4.490 3.899 C 5.402 3.178,6.475 2.888,7.605 3.058 M10.611 5.310 C 10.810 5.741,10.875 5.956,10.942 6.398 C 11.014 6.879,11.014 7.121,10.942 7.605 C 10.604 9.843,8.436 11.368,6.231 10.918 C 5.843 10.839,5.224 10.616,5.061 10.496 C 4.986 10.441,5.131 10.289,7.701 7.719 C 9.196 6.224,10.430 5.000,10.444 5.000 C 10.457 5.000,10.532 5.140,10.611 5.310 M16.380 11.043 C 13.784 11.299,11.676 13.219,11.115 15.840 C 10.984 16.450,10.984 17.558,11.114 18.160 C 11.639 20.588,13.417 22.365,15.840 22.885 C 16.190 22.960,16.383 22.975,17.000 22.975 C 17.822 22.975,18.248 22.909,18.940 22.672 C 20.954 21.982,22.426 20.298,22.885 18.160 C 23.015 17.554,23.015 16.446,22.885 15.840 C 22.626 14.631,22.109 13.660,21.269 12.805 C 19.978 11.490,18.230 10.860,16.380 11.043 M17.605 13.058 C 19.062 13.278,20.287 14.302,20.780 15.712 L 20.874 15.980 18.937 15.990 C 17.872 15.996,16.128 15.996,15.063 15.990 L 13.126 15.980 13.220 15.712 C 13.707 14.320,14.934 13.283,16.358 13.061 C 16.816 12.990,17.144 12.989,17.605 13.058 M20.841 18.110 C 20.400 19.559,19.243 20.618,17.773 20.917 C 15.764 21.327,13.768 20.113,13.159 18.110 L 13.126 18.000 17.000 18.000 L 20.874 18.000 20.841 18.110 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const TabletsIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Tablets = TabletsIcon;