UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.05 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-mars" 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="M15.695 2.057 C 15.466 2.129,15.256 2.299,15.128 2.516 C 15.037 2.672,15.020 2.746,15.020 3.000 C 15.020 3.256,15.036 3.328,15.131 3.489 C 15.192 3.592,15.304 3.725,15.381 3.783 C 15.650 3.989,15.716 3.996,17.200 3.998 L 18.580 4.000 16.385 6.195 L 14.190 8.390 13.873 8.177 C 13.240 7.754,12.400 7.385,11.660 7.205 C 10.646 6.959,9.354 6.959,8.340 7.205 C 5.849 7.810,3.842 9.798,3.223 12.275 C 3.064 12.908,3.023 13.264,3.023 14.000 C 3.023 14.385,3.046 14.844,3.074 15.020 C 3.574 18.112,5.888 20.426,8.980 20.926 C 9.392 20.992,10.607 20.992,11.020 20.926 C 14.109 20.428,16.428 18.109,16.926 15.020 C 16.954 14.844,16.977 14.385,16.977 14.000 C 16.977 13.615,16.954 13.156,16.926 12.980 C 16.760 11.952,16.372 10.948,15.823 10.127 L 15.610 9.810 17.803 7.617 L 19.996 5.424 20.008 6.865 L 20.020 8.306 20.141 8.503 C 20.543 9.156,21.457 9.156,21.859 8.503 L 21.980 8.306 21.991 5.563 C 22.002 3.089,21.996 2.803,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.540 2.003 C 16.466 2.005,15.823 2.017,15.695 2.057 M10.552 9.043 C 12.413 9.246,14.001 10.479,14.680 12.248 C 15.092 13.320,15.085 14.720,14.663 15.793 C 14.120 17.174,12.991 18.256,11.600 18.732 C 11.044 18.922,10.670 18.980,10.000 18.980 C 9.330 18.980,8.956 18.922,8.400 18.732 C 6.808 18.188,5.580 16.864,5.161 15.240 C 4.920 14.307,4.983 13.125,5.320 12.248 C 6.146 10.096,8.274 8.793,10.552 9.043 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MarsIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Mars = MarsIcon;