@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.01 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-cloud" 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="M8.420 4.023 C 8.354 4.032,8.129 4.060,7.920 4.084 C 7.157 4.172,6.180 4.471,5.430 4.846 C 3.875 5.623,2.588 6.925,1.826 8.489 C 0.729 10.744,0.734 13.291,1.841 15.543 C 2.973 17.848,5.119 19.431,7.760 19.910 C 8.050 19.963,8.805 19.974,12.940 19.989 C 16.462 20.001,17.878 19.993,18.140 19.960 C 19.387 19.799,20.456 19.285,21.340 18.420 C 22.959 16.835,23.435 14.495,22.570 12.376 C 22.033 11.062,20.895 9.946,19.539 9.403 C 18.801 9.108,18.139 9.001,17.052 8.999 L 16.420 8.998 16.220 8.570 C 15.860 7.798,15.408 7.142,14.794 6.500 C 13.542 5.191,11.976 4.375,10.180 4.097 C 9.818 4.040,8.644 3.991,8.420 4.023 M9.648 6.044 C 11.547 6.247,13.280 7.385,14.208 9.037 C 14.398 9.377,14.526 9.664,14.740 10.235 C 14.866 10.570,15.020 10.766,15.256 10.892 C 15.412 10.975,15.485 10.980,16.760 11.004 C 17.942 11.026,18.136 11.038,18.405 11.111 C 19.390 11.379,20.233 12.096,20.678 13.046 C 20.906 13.532,20.978 13.881,20.978 14.500 C 20.978 15.119,20.906 15.468,20.678 15.954 C 20.232 16.907,19.459 17.569,18.420 17.892 C 18.140 17.978,18.134 17.979,13.420 17.992 C 10.077 18.001,8.589 17.992,8.320 17.959 C 7.384 17.848,6.449 17.501,5.640 16.965 C 5.141 16.635,4.357 15.842,4.023 15.331 C 2.996 13.761,2.739 11.891,3.307 10.140 C 3.605 9.224,4.073 8.475,4.795 7.760 C 5.359 7.202,5.731 6.934,6.380 6.620 C 7.446 6.105,8.493 5.920,9.648 6.044 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CloudIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Cloud = CloudIcon;