@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.85 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-upload" 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.207 2.043 C 5.861 2.269,3.615 3.625,2.331 5.589 C 1.730 6.508,1.301 7.594,1.094 8.720 C 0.996 9.251,0.996 10.655,1.093 11.220 C 1.355 12.739,1.929 14.007,2.848 15.100 C 3.405 15.764,3.587 15.888,4.000 15.888 C 4.405 15.888,4.724 15.681,4.905 15.300 C 5.106 14.874,5.003 14.517,4.522 13.980 C 3.123 12.418,2.651 10.209,3.287 8.200 C 3.792 6.604,4.932 5.297,6.442 4.584 C 7.309 4.174,7.973 4.027,8.960 4.026 C 9.982 4.024,10.706 4.177,11.520 4.565 C 12.224 4.900,12.781 5.293,13.300 5.822 C 13.951 6.484,14.353 7.166,14.779 8.334 C 14.866 8.573,15.040 8.777,15.256 8.892 C 15.412 8.975,15.486 8.981,16.740 9.006 C 17.466 9.020,18.141 9.050,18.240 9.073 C 19.281 9.310,20.206 10.048,20.658 11.004 C 20.897 11.507,20.972 11.860,20.975 12.500 C 20.978 12.969,20.964 13.111,20.888 13.376 C 20.646 14.217,20.233 14.814,19.514 15.364 C 19.125 15.661,19.020 15.852,19.020 16.263 C 19.020 16.508,19.036 16.573,19.141 16.743 C 19.363 17.104,19.757 17.285,20.180 17.222 C 20.444 17.182,20.907 16.856,21.400 16.361 C 22.179 15.580,22.669 14.661,22.904 13.540 C 23.009 13.042,23.011 11.963,22.907 11.480 C 22.798 10.964,22.579 10.347,22.356 9.920 C 21.679 8.624,20.405 7.600,18.973 7.198 C 18.513 7.069,17.878 7.002,17.113 7.001 C 16.414 7.000,16.405 6.999,16.378 6.910 C 16.363 6.861,16.252 6.622,16.131 6.380 C 15.158 4.439,13.327 2.921,11.239 2.325 C 10.260 2.046,9.199 1.947,8.207 2.043 M11.580 12.096 C 11.422 12.172,10.940 12.634,9.274 14.306 C 8.116 15.469,7.138 16.481,7.101 16.555 C 6.872 17.010,7.056 17.601,7.508 17.867 C 7.673 17.964,7.742 17.980,8.000 17.979 C 8.213 17.979,8.341 17.957,8.440 17.905 C 8.517 17.864,9.124 17.290,9.789 16.628 L 10.998 15.424 11.009 18.365 L 11.020 21.306 11.141 21.503 C 11.543 22.156,12.457 22.156,12.859 21.503 L 12.980 21.306 12.991 18.365 L 13.002 15.424 14.211 16.628 C 14.876 17.290,15.483 17.864,15.560 17.905 C 15.659 17.957,15.787 17.979,16.000 17.979 C 16.258 17.980,16.327 17.964,16.492 17.867 C 16.714 17.737,16.901 17.498,16.965 17.264 C 17.019 17.061,16.989 16.733,16.899 16.555 C 16.862 16.481,15.884 15.469,14.726 14.306 C 12.433 12.004,12.429 12.001,12.000 12.001 C 11.851 12.001,11.716 12.031,11.580 12.096 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CloudUploadIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CloudUpload = CloudUploadIcon;