UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.16 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-maximize-2" 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="M14.695 2.057 C 14.466 2.129,14.256 2.299,14.128 2.516 C 14.037 2.672,14.020 2.746,14.020 3.000 C 14.020 3.256,14.036 3.328,14.131 3.489 C 14.256 3.702,14.449 3.864,14.670 3.943 C 14.787 3.985,15.234 3.997,16.700 3.998 L 18.579 4.000 15.874 6.710 C 14.386 8.200,13.138 9.481,13.101 9.555 C 12.872 10.010,13.056 10.601,13.508 10.867 C 13.673 10.964,13.742 10.980,14.000 10.979 C 14.212 10.979,14.341 10.957,14.440 10.905 C 14.517 10.865,15.799 9.615,17.289 8.128 L 19.997 5.424 20.009 7.365 L 20.020 9.306 20.141 9.503 C 20.543 10.156,21.457 10.156,21.859 9.503 L 21.980 9.306 21.991 6.063 C 22.001 3.126,21.996 2.804,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.040 2.003 C 15.557 2.005,14.824 2.017,14.695 2.057 M9.640 13.068 C 9.485 13.121,9.081 13.508,6.731 15.853 L 4.003 18.575 3.991 16.638 L 3.980 14.700 3.871 14.514 C 3.479 13.848,2.521 13.848,2.129 14.514 L 2.020 14.700 2.009 17.940 C 1.999 20.874,2.004 21.196,2.064 21.354 C 2.155 21.595,2.343 21.796,2.580 21.906 L 2.780 21.999 5.980 21.998 C 8.549 21.997,9.210 21.986,9.330 21.943 C 9.551 21.864,9.744 21.702,9.869 21.489 C 9.964 21.328,9.980 21.256,9.980 21.000 C 9.980 20.746,9.963 20.672,9.872 20.516 C 9.813 20.415,9.698 20.282,9.618 20.221 C 9.337 20.007,9.265 20.000,7.264 20.000 L 5.421 20.000 8.126 17.290 C 9.614 15.800,10.865 14.517,10.905 14.440 C 10.957 14.341,10.979 14.212,10.979 14.000 C 10.980 13.745,10.964 13.672,10.872 13.516 C 10.617 13.083,10.122 12.903,9.640 13.068 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const Maximize2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Maximize2 = Maximize2Icon;