@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.14 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-wine" 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.664 1.063 C 8.458 1.138,8.267 1.287,8.167 1.449 C 7.988 1.739,7.022 4.527,6.665 5.780 C 6.056 7.924,5.855 9.919,6.121 11.180 C 6.497 12.963,7.655 14.504,9.227 15.311 C 9.767 15.589,10.192 15.738,10.890 15.897 L 11.000 15.922 11.000 18.461 L 11.000 21.000 9.446 21.000 C 7.758 21.000,7.658 21.011,7.382 21.221 C 7.302 21.282,7.187 21.415,7.128 21.516 C 7.037 21.672,7.020 21.746,7.020 22.000 C 7.020 22.256,7.036 22.328,7.131 22.489 C 7.256 22.702,7.449 22.864,7.670 22.943 C 7.892 23.022,16.108 23.022,16.330 22.943 C 16.551 22.864,16.744 22.702,16.869 22.489 C 16.964 22.328,16.980 22.256,16.980 22.000 C 16.980 21.746,16.963 21.672,16.872 21.516 C 16.813 21.415,16.698 21.282,16.618 21.221 C 16.342 21.011,16.242 21.000,14.554 21.000 L 13.000 21.000 13.000 18.461 L 13.000 15.922 13.110 15.897 C 14.457 15.591,15.393 15.087,16.269 14.195 C 17.586 12.854,18.140 11.188,17.963 9.100 C 17.809 7.283,17.288 5.301,16.164 2.264 C 15.857 1.433,15.760 1.276,15.457 1.120 L 15.262 1.020 12.041 1.012 C 9.322 1.006,8.796 1.014,8.664 1.063 M14.670 4.030 C 15.092 5.240,15.431 6.340,15.599 7.045 C 15.745 7.661,15.920 8.643,15.920 8.849 L 15.920 9.000 12.000 9.000 L 8.080 9.000 8.080 8.849 C 8.080 8.643,8.255 7.661,8.401 7.045 C 8.569 6.340,8.908 5.240,9.330 4.030 L 9.690 3.000 12.000 3.000 L 14.310 3.000 14.670 4.030 M15.841 11.110 C 15.400 12.559,14.243 13.618,12.773 13.917 C 10.764 14.327,8.768 13.113,8.159 11.110 L 8.126 11.000 12.000 11.000 L 15.874 11.000 15.841 11.110 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const WineIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Wine = WineIcon;