@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.33 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-mountain-snow" 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.699 2.056 C 7.476 2.126,7.327 2.231,7.197 2.411 C 7.115 2.523,6.262 5.035,4.038 11.708 C 1.083 20.573,0.991 20.858,1.011 21.085 C 1.047 21.482,1.300 21.811,1.670 21.943 C 1.794 21.987,3.597 21.997,11.983 21.998 C 21.340 22.000,22.161 21.995,22.340 21.934 C 22.716 21.806,23.000 21.396,23.000 20.984 C 23.000 20.816,18.086 5.986,17.893 5.572 C 17.784 5.337,17.573 5.149,17.319 5.060 C 17.100 4.982,16.902 4.984,16.657 5.065 C 16.479 5.124,16.254 5.336,14.371 7.213 C 13.222 8.358,12.275 9.287,12.266 9.278 C 12.256 9.268,11.474 7.710,10.526 5.815 C 8.990 2.741,8.787 2.356,8.646 2.244 C 8.355 2.014,8.035 1.951,7.699 2.056 M9.685 8.610 C 11.288 11.818,11.280 11.804,11.664 11.935 C 11.905 12.017,12.094 12.017,12.343 11.935 C 12.521 11.876,12.738 11.672,14.548 9.867 C 15.888 8.532,16.564 7.884,16.579 7.923 C 16.670 8.164,19.000 15.189,19.000 15.224 C 19.000 15.336,17.897 15.762,17.240 15.904 C 16.766 16.007,15.753 16.008,15.280 15.908 C 14.366 15.713,13.581 15.351,12.430 14.593 C 10.975 13.635,9.790 13.180,8.371 13.035 C 7.657 12.961,6.587 13.055,5.850 13.256 C 5.735 13.287,5.640 13.301,5.640 13.287 C 5.640 13.250,8.177 5.640,8.190 5.640 C 8.195 5.640,8.868 6.976,9.685 8.610 M8.820 15.120 C 9.672 15.310,10.406 15.652,11.480 16.358 C 13.222 17.504,14.677 18.000,16.297 18.000 C 17.260 18.000,18.415 17.735,19.402 17.289 L 19.664 17.170 20.118 18.535 C 20.367 19.286,20.580 19.922,20.590 19.950 C 20.605 19.990,18.870 20.000,12.000 20.000 C 5.130 20.000,3.395 19.990,3.410 19.950 C 3.420 19.922,3.729 18.995,4.098 17.890 L 4.767 15.879 4.944 15.775 C 5.474 15.465,6.316 15.169,6.982 15.061 C 7.457 14.983,8.330 15.011,8.820 15.120 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MountainSnowIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MountainSnow = MountainSnowIcon;