UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.25 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-eclipse" 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="M11.280 1.023 C 11.203 1.032,10.951 1.059,10.720 1.083 C 8.832 1.283,6.991 2.023,5.360 3.235 C 4.751 3.688,3.684 4.755,3.226 5.367 C 0.728 8.714,0.301 13.032,2.097 16.780 C 2.643 17.918,3.276 18.801,4.238 19.762 C 5.199 20.724,6.082 21.357,7.220 21.903 C 10.967 23.699,15.288 23.270,18.637 20.770 C 19.246 20.316,20.316 19.246,20.770 18.637 C 23.744 14.652,23.744 9.348,20.770 5.363 C 20.316 4.755,19.247 3.686,18.640 3.235 C 17.045 2.049,15.365 1.360,13.423 1.096 C 13.000 1.038,11.574 0.990,11.280 1.023 M13.160 3.084 C 14.737 3.271,16.341 3.954,17.631 4.987 C 19.431 6.429,20.651 8.603,20.916 10.840 C 21.000 11.549,21.000 11.545,20.885 11.654 C 20.502 12.013,19.571 12.542,18.980 12.734 C 17.619 13.177,16.374 13.177,15.020 12.733 C 14.151 12.449,13.213 11.837,12.566 11.135 C 11.040 9.479,10.551 7.191,11.265 5.040 C 11.477 4.400,11.927 3.594,12.325 3.140 C 12.452 2.995,12.425 2.997,13.160 3.084 M9.726 3.510 C 9.405 4.150,9.101 5.152,8.995 5.920 C 8.927 6.409,8.927 7.591,8.995 8.080 C 9.236 9.819,10.051 11.453,11.299 12.701 C 12.552 13.954,14.170 14.758,15.940 15.007 C 16.403 15.073,17.597 15.073,18.060 15.007 C 18.821 14.900,19.689 14.647,20.350 14.338 C 20.625 14.210,20.720 14.181,20.720 14.224 C 20.720 14.257,20.638 14.530,20.538 14.832 C 19.902 16.744,18.641 18.386,16.927 19.532 C 16.138 20.060,14.876 20.588,13.908 20.797 C 11.266 21.366,8.479 20.708,6.370 19.019 C 4.857 17.807,3.722 16.029,3.267 14.160 C 3.081 13.397,3.023 12.888,3.023 12.000 C 3.023 10.507,3.280 9.379,3.920 8.060 C 4.971 5.892,6.862 4.233,9.160 3.463 C 9.876 3.223,9.870 3.223,9.726 3.510 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const EclipseIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Eclipse = EclipseIcon;