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-euro" 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="M13.060 3.042 C 9.748 3.367,6.890 5.496,5.655 8.560 L 5.486 8.980 4.613 9.002 C 4.065 9.015,3.698 9.041,3.627 9.072 C 3.431 9.156,3.240 9.326,3.128 9.516 C 3.037 9.672,3.020 9.746,3.020 10.000 C 3.020 10.256,3.036 10.328,3.131 10.489 C 3.256 10.702,3.449 10.864,3.670 10.943 C 3.769 10.978,4.024 10.997,4.420 10.998 L 5.020 11.000 5.020 12.000 L 5.020 13.000 4.456 13.000 C 3.647 13.000,3.368 13.109,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.192 14.592,3.304 14.725,3.381 14.783 C 3.633 14.976,3.756 14.996,4.660 14.998 L 5.500 15.000 5.596 15.250 C 6.545 17.739,8.585 19.717,11.055 20.542 C 13.926 21.501,16.916 20.933,19.404 18.954 C 19.826 18.619,19.958 18.423,19.991 18.084 C 20.042 17.550,19.650 17.080,19.099 17.015 C 18.814 16.981,18.596 17.055,18.310 17.281 C 17.862 17.635,17.148 18.099,16.760 18.289 C 15.257 19.024,13.592 19.189,12.048 18.757 C 11.269 18.539,10.523 18.176,9.860 17.694 C 9.455 17.399,8.728 16.676,8.419 16.260 C 8.196 15.959,7.680 15.102,7.680 15.032 C 7.680 15.014,8.918 14.999,10.430 14.998 C 12.623 14.997,13.210 14.986,13.330 14.943 C 13.551 14.864,13.744 14.702,13.869 14.489 C 13.964 14.328,13.980 14.256,13.980 14.000 C 13.980 13.746,13.963 13.672,13.872 13.516 C 13.813 13.415,13.698 13.282,13.618 13.221 C 13.325 12.998,13.364 13.000,10.096 13.000 L 7.085 13.000 7.054 12.810 C 7.015 12.570,7.014 11.257,7.053 11.110 L 7.082 11.000 11.631 10.998 C 15.327 10.997,16.208 10.986,16.330 10.943 C 16.551 10.864,16.744 10.702,16.869 10.489 C 16.964 10.328,16.980 10.256,16.980 10.000 C 16.980 9.746,16.963 9.672,16.872 9.516 C 16.813 9.415,16.698 9.282,16.618 9.221 C 16.319 8.993,16.469 9.000,11.870 9.000 L 7.633 9.000 7.800 8.690 C 8.479 7.426,9.558 6.365,10.805 5.738 C 11.906 5.183,13.212 4.929,14.400 5.039 C 15.803 5.168,17.012 5.662,18.091 6.548 C 18.508 6.891,18.637 6.961,18.894 6.988 C 19.622 7.063,20.171 6.375,19.939 5.676 C 19.855 5.424,19.625 5.185,19.056 4.757 C 17.342 3.469,15.140 2.839,13.060 3.042 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const EuroIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Euro = EuroIcon;