UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.67 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-import" 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.695 2.057 C 11.466 2.129,11.256 2.299,11.128 2.516 L 11.020 2.700 11.009 7.637 L 10.999 12.575 9.769 11.353 C 8.688 10.279,8.516 10.124,8.343 10.066 C 7.863 9.905,7.382 10.084,7.128 10.516 C 7.036 10.672,7.020 10.745,7.021 11.000 C 7.021 11.212,7.043 11.341,7.095 11.440 C 7.135 11.517,8.116 12.531,9.274 13.694 C 11.567 15.996,11.571 15.999,12.000 15.999 C 12.429 15.999,12.433 15.996,14.726 13.694 C 15.884 12.531,16.865 11.517,16.905 11.440 C 16.957 11.341,16.979 11.212,16.979 11.000 C 16.980 10.745,16.964 10.672,16.872 10.516 C 16.618 10.084,16.137 9.905,15.657 10.066 C 15.484 10.124,15.312 10.279,14.231 11.353 L 13.001 12.575 12.991 7.637 L 12.980 2.700 12.872 2.516 C 12.628 2.101,12.150 1.915,11.695 2.057 M3.499 4.043 C 2.383 4.230,1.461 5.048,1.114 6.160 L 1.020 6.460 1.020 12.000 L 1.020 17.540 1.114 17.840 C 1.422 18.827,2.173 19.578,3.160 19.886 L 3.460 19.980 12.000 19.980 L 20.540 19.980 20.840 19.886 C 21.827 19.578,22.578 18.827,22.886 17.840 L 22.980 17.540 22.980 12.000 L 22.980 6.460 22.886 6.160 C 22.581 5.181,21.829 4.425,20.861 4.122 L 20.540 4.022 18.260 4.008 C 16.678 3.998,15.917 4.007,15.776 4.038 C 15.515 4.095,15.269 4.277,15.129 4.514 C 15.036 4.672,15.020 4.745,15.020 5.000 C 15.020 5.256,15.036 5.328,15.131 5.489 C 15.256 5.702,15.449 5.864,15.670 5.943 C 15.788 5.985,16.278 5.997,17.963 5.998 C 20.415 6.000,20.391 5.998,20.697 6.303 C 21.020 6.627,21.000 6.243,21.000 12.001 C 21.000 16.212,20.990 17.139,20.945 17.290 C 20.872 17.533,20.707 17.740,20.484 17.872 L 20.300 17.980 12.000 17.980 L 3.700 17.980 3.516 17.872 C 3.415 17.813,3.284 17.700,3.225 17.623 C 2.988 17.312,3.000 17.608,3.000 12.022 C 3.000 6.240,2.980 6.627,3.303 6.303 C 3.609 5.998,3.585 6.000,6.037 5.998 C 7.722 5.997,8.212 5.985,8.330 5.943 C 8.551 5.864,8.744 5.702,8.869 5.489 C 8.964 5.328,8.980 5.256,8.980 5.000 C 8.980 4.746,8.963 4.672,8.872 4.516 C 8.813 4.415,8.698 4.282,8.618 4.221 C 8.331 4.002,8.297 4.000,5.904 4.005 C 4.692 4.007,3.609 4.025,3.499 4.043 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ImportIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Import = ImportIcon;