@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.65 kB
JavaScript
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-stroke" 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="M16.695 2.057 C 16.466 2.129,16.256 2.299,16.128 2.516 C 16.037 2.672,16.020 2.746,16.020 3.000 C 16.020 3.256,16.036 3.328,16.131 3.489 C 16.192 3.592,16.304 3.725,16.381 3.783 C 16.635 3.977,16.753 3.996,17.700 3.998 L 18.580 4.000 17.291 5.288 L 16.003 6.577 15.272 5.855 C 14.655 5.247,14.509 5.123,14.343 5.067 C 13.865 4.905,13.383 5.083,13.128 5.516 C 13.036 5.672,13.020 5.745,13.021 6.000 C 13.021 6.213,13.043 6.340,13.096 6.440 C 13.136 6.517,13.486 6.900,13.874 7.291 L 14.578 8.001 13.884 8.696 L 13.191 9.390 12.873 9.178 C 12.029 8.613,11.002 8.222,9.980 8.076 C 9.517 8.010,8.483 8.010,8.020 8.076 C 5.218 8.476,2.905 10.550,2.223 13.275 C 2.064 13.908,2.023 14.264,2.023 15.000 C 2.023 15.385,2.046 15.844,2.074 16.020 C 2.574 19.112,4.888 21.426,7.980 21.926 C 8.392 21.992,9.607 21.992,10.020 21.926 C 13.109 21.428,15.428 19.109,15.926 16.020 C 15.954 15.844,15.977 15.385,15.977 15.000 C 15.977 14.615,15.954 14.156,15.926 13.980 C 15.760 12.951,15.372 11.948,14.822 11.127 L 14.610 10.809 15.304 10.116 L 15.999 9.422 16.709 10.126 C 17.100 10.514,17.483 10.864,17.560 10.904 C 17.660 10.957,17.787 10.979,18.000 10.979 C 18.258 10.980,18.327 10.964,18.492 10.867 C 18.714 10.737,18.901 10.498,18.965 10.264 C 19.019 10.061,18.989 9.733,18.899 9.555 C 18.861 9.481,18.513 9.100,18.126 8.709 L 17.422 7.999 18.701 6.719 L 19.980 5.439 20.000 6.373 L 20.020 7.307 20.141 7.503 C 20.543 8.156,21.457 8.156,21.859 7.503 L 21.980 7.306 21.991 5.063 C 22.002 3.053,21.996 2.802,21.937 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 19.040 2.003 C 17.374 2.005,16.821 2.018,16.695 2.057 M9.552 10.043 C 11.413 10.246,13.001 11.479,13.680 13.248 C 14.092 14.320,14.085 15.720,13.663 16.793 C 13.120 18.174,11.991 19.256,10.600 19.732 C 10.044 19.922,9.670 19.980,9.000 19.980 C 8.330 19.980,7.956 19.922,7.400 19.732 C 5.808 19.188,4.580 17.864,4.161 16.240 C 3.920 15.307,3.983 14.125,4.320 13.248 C 5.146 11.096,7.274 9.793,9.552 10.043 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MarsStrokeIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MarsStroke = MarsStrokeIcon;