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-milk" 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="M7.695 1.057 C 7.466 1.129,7.256 1.299,7.128 1.516 C 7.036 1.672,7.020 1.746,7.020 2.003 C 7.020 2.271,7.034 2.329,7.141 2.503 C 7.289 2.744,7.577 2.946,7.825 2.983 L 8.009 3.010 7.989 4.155 C 7.962 5.697,7.939 5.774,7.120 7.020 C 6.550 7.887,6.319 8.355,6.147 8.991 L 6.020 9.460 6.020 15.000 L 6.020 20.540 6.114 20.840 C 6.422 21.827,7.173 22.578,8.160 22.886 L 8.460 22.980 12.000 22.980 L 15.540 22.980 15.840 22.886 C 16.827 22.578,17.578 21.827,17.886 20.840 L 17.980 20.540 17.980 15.000 L 17.980 9.460 17.853 8.991 C 17.681 8.357,17.450 7.888,16.885 7.026 C 16.045 5.744,16.037 5.717,16.010 4.155 L 15.991 3.010 16.175 2.983 C 16.423 2.946,16.711 2.744,16.859 2.503 C 16.966 2.329,16.980 2.271,16.980 2.003 C 16.980 1.746,16.964 1.672,16.872 1.516 C 16.740 1.293,16.533 1.128,16.290 1.055 C 16.029 0.976,7.946 0.979,7.695 1.057 M14.010 4.270 C 14.027 5.536,14.027 5.541,14.150 6.009 C 14.317 6.641,14.547 7.108,15.120 7.980 C 15.625 8.749,15.786 9.056,15.907 9.482 C 15.973 9.718,15.979 9.937,15.980 12.019 L 15.980 14.298 15.680 14.368 C 15.216 14.476,14.563 14.520,14.062 14.477 C 13.478 14.426,13.019 14.314,12.320 14.052 C 11.255 13.652,10.555 13.520,9.500 13.520 C 9.100 13.520,8.657 13.545,8.423 13.580 C 8.205 13.613,8.020 13.640,8.011 13.640 C 8.001 13.640,8.001 12.753,8.010 11.670 C 8.030 9.165,7.988 9.343,8.885 7.974 C 9.454 7.106,9.684 6.638,9.849 6.009 C 9.972 5.542,9.972 5.533,9.990 4.270 L 10.008 3.000 12.000 3.000 L 13.992 3.000 14.010 4.270 M10.640 15.620 C 10.805 15.657,11.093 15.742,11.280 15.808 C 12.340 16.184,12.558 16.253,12.969 16.340 C 13.656 16.486,14.384 16.536,15.036 16.482 C 15.335 16.457,15.652 16.420,15.740 16.399 C 15.828 16.379,15.923 16.361,15.950 16.361 C 16.026 16.359,16.022 20.035,15.945 20.290 C 15.872 20.533,15.707 20.740,15.484 20.872 L 15.300 20.980 12.000 20.980 L 8.700 20.980 8.516 20.872 C 8.415 20.813,8.283 20.700,8.224 20.621 C 7.998 20.325,7.998 20.335,8.010 17.923 L 8.020 15.705 8.160 15.668 C 8.765 15.508,10.029 15.483,10.640 15.620 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MilkIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Milk = MilkIcon;