UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.35 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-pocket" 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.391 2.230,1.487 3.025,1.114 4.140 L 1.021 4.420 1.008 7.900 C 1.000 10.179,1.011 11.565,1.039 11.915 C 1.207 13.968,1.960 15.936,3.226 17.633 C 3.686 18.248,4.752 19.314,5.367 19.774 C 6.780 20.828,8.354 21.517,10.038 21.820 C 13.082 22.368,16.131 21.641,18.637 19.770 C 19.246 19.316,20.316 18.246,20.770 17.637 C 22.044 15.930,22.791 13.975,22.960 11.900 C 22.991 11.518,23.002 10.238,22.993 7.880 L 22.979 4.420 22.886 4.140 C 22.557 3.159,21.821 2.425,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.452 4.103,20.571 4.178,20.697 4.304 C 21.020 4.626,21.006 4.436,20.990 8.408 C 20.974 12.207,20.976 12.162,20.733 13.160 C 20.350 14.737,19.497 16.232,18.316 17.400 C 17.596 18.112,16.908 18.601,15.980 19.061 C 13.447 20.317,10.485 20.310,7.980 19.042 C 7.044 18.569,6.380 18.093,5.665 17.382 C 4.497 16.221,3.648 14.727,3.267 13.160 C 3.024 12.162,3.026 12.207,3.010 8.408 C 2.994 4.435,2.980 4.626,3.303 4.303 C 3.421 4.185,3.552 4.100,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 M7.670 9.061 C 7.448 9.142,7.250 9.309,7.128 9.516 C 7.037 9.672,7.020 9.746,7.020 10.000 C 7.020 10.254,7.036 10.328,7.127 10.480 C 7.261 10.705,11.368 14.805,11.560 14.905 C 11.660 14.957,11.787 14.978,12.000 14.978 C 12.213 14.978,12.340 14.957,12.440 14.905 C 12.632 14.805,16.739 10.705,16.873 10.480 C 16.964 10.328,16.980 10.254,16.980 10.000 C 16.980 9.746,16.963 9.672,16.872 9.516 C 16.618 9.084,16.137 8.906,15.657 9.066 C 15.481 9.124,15.279 9.312,13.730 10.854 L 12.000 12.577 10.270 10.854 C 8.721 9.312,8.519 9.124,8.343 9.066 C 8.108 8.987,7.875 8.986,7.670 9.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const PocketIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Pocket = PocketIcon;