UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.17 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-minimize-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="M20.640 2.068 C 20.485 2.121,20.081 2.508,17.731 4.853 L 15.003 7.575 14.991 5.638 L 14.980 3.700 14.871 3.514 C 14.479 2.848,13.521 2.848,13.129 3.514 L 13.020 3.700 13.009 6.940 C 12.999 9.874,13.004 10.196,13.064 10.354 C 13.155 10.595,13.343 10.796,13.580 10.906 L 13.780 10.999 16.980 10.998 C 19.549 10.997,20.210 10.986,20.330 10.943 C 20.551 10.864,20.744 10.702,20.869 10.489 C 20.964 10.328,20.980 10.256,20.980 10.000 C 20.980 9.746,20.963 9.672,20.872 9.516 C 20.813 9.415,20.698 9.282,20.618 9.221 C 20.337 9.007,20.265 9.000,18.264 9.000 L 16.421 9.000 19.126 6.290 C 20.614 4.800,21.865 3.517,21.905 3.440 C 21.957 3.341,21.979 3.212,21.979 3.000 C 21.980 2.745,21.964 2.672,21.872 2.516 C 21.617 2.083,21.122 1.903,20.640 2.068 M3.695 13.057 C 3.466 13.129,3.256 13.299,3.128 13.516 C 3.037 13.672,3.020 13.746,3.020 14.000 C 3.020 14.256,3.036 14.328,3.131 14.489 C 3.256 14.702,3.449 14.864,3.670 14.943 C 3.787 14.985,4.234 14.997,5.700 14.998 L 7.579 15.000 4.874 17.710 C 3.386 19.201,2.138 20.481,2.101 20.555 C 1.872 21.010,2.056 21.601,2.508 21.867 C 2.673 21.964,2.742 21.980,3.000 21.979 C 3.212 21.979,3.341 21.957,3.440 21.905 C 3.517 21.865,4.799 20.615,6.289 19.128 L 8.997 16.424 9.009 18.365 L 9.020 20.306 9.141 20.503 C 9.543 21.156,10.457 21.156,10.859 20.503 L 10.980 20.306 10.991 17.063 C 11.001 14.126,10.996 13.804,10.936 13.646 C 10.845 13.405,10.657 13.204,10.420 13.094 L 10.220 13.001 7.040 13.003 C 4.557 13.005,3.824 13.017,3.695 13.057 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const Minimize2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Minimize2 = Minimize2Icon;