@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.81 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-cup-soda" 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="M12.670 1.057 C 12.455 1.134,12.257 1.297,12.143 1.492 C 12.058 1.637,11.980 2.041,11.602 4.309 C 11.359 5.766,11.160 6.967,11.160 6.979 C 11.160 6.990,9.750 7.000,8.026 7.000 C 5.487 7.000,4.858 7.010,4.710 7.055 C 4.053 7.253,3.793 8.032,4.198 8.591 C 4.356 8.810,4.621 8.960,4.899 8.988 C 5.083 9.007,5.125 9.026,5.140 9.096 C 5.151 9.142,5.519 11.718,5.960 14.820 C 6.400 17.922,6.781 20.550,6.805 20.660 C 7.057 21.796,8.012 22.725,9.151 22.943 C 9.584 23.026,14.456 23.026,14.889 22.943 C 15.989 22.733,16.907 21.878,17.197 20.794 C 17.240 20.633,17.628 17.953,18.059 14.840 C 18.490 11.727,18.851 9.142,18.861 9.096 C 18.876 9.026,18.917 9.007,19.101 8.988 C 19.379 8.960,19.644 8.810,19.802 8.591 C 20.207 8.032,19.947 7.253,19.290 7.055 C 19.142 7.011,18.541 7.000,16.154 7.000 C 13.522 7.000,13.200 6.993,13.200 6.938 C 13.200 6.905,13.344 6.014,13.520 4.960 C 13.696 3.906,13.840 3.033,13.840 3.022 C 13.840 3.010,14.142 2.999,14.510 2.998 C 15.232 2.996,15.377 2.968,15.619 2.783 C 15.696 2.725,15.808 2.592,15.869 2.489 C 15.964 2.328,15.980 2.256,15.980 2.000 C 15.980 1.746,15.963 1.672,15.872 1.516 C 15.740 1.293,15.533 1.128,15.290 1.055 C 15.033 0.978,12.887 0.979,12.670 1.057 M16.840 9.029 C 16.840 9.080,16.116 14.257,16.108 14.264 C 16.057 14.305,15.278 14.447,14.939 14.476 C 14.086 14.551,13.321 14.427,12.320 14.052 C 11.255 13.652,10.555 13.520,9.500 13.520 C 8.904 13.520,8.403 13.566,7.939 13.661 L 7.819 13.686 7.505 11.453 C 7.333 10.225,7.183 9.171,7.171 9.110 L 7.150 9.000 11.995 9.000 C 14.660 9.000,16.840 9.013,16.840 9.029 M10.640 15.619 C 10.805 15.656,11.093 15.740,11.280 15.807 C 12.336 16.183,12.558 16.253,12.969 16.340 C 13.653 16.485,14.386 16.536,15.027 16.482 C 15.321 16.458,15.615 16.427,15.680 16.414 C 15.776 16.395,15.800 16.404,15.800 16.459 C 15.800 16.497,15.682 17.375,15.538 18.410 C 15.256 20.435,15.249 20.462,14.973 20.728 C 14.686 21.006,14.750 21.000,12.020 21.000 C 9.290 21.000,9.354 21.006,9.067 20.728 C 8.982 20.647,8.880 20.516,8.839 20.437 C 8.786 20.334,8.674 19.652,8.442 18.037 C 8.265 16.796,8.120 15.759,8.120 15.733 C 8.120 15.538,9.910 15.458,10.640 15.619 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CupSodaIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CupSoda = CupSodaIcon;