@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.35 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-weight" 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="M11.358 1.061 C 9.150 1.405,7.636 3.582,8.082 5.772 C 8.158 6.141,8.394 6.806,8.483 6.898 C 8.503 6.919,8.520 6.950,8.520 6.968 C 8.520 6.986,8.021 7.000,7.410 7.000 C 6.800 7.000,6.184 7.019,6.043 7.042 C 4.981 7.215,4.026 8.005,3.701 8.980 C 3.606 9.264,1.139 18.216,1.085 18.472 C 0.937 19.173,1.147 20.116,1.585 20.718 C 2.029 21.329,2.570 21.703,3.300 21.903 C 3.572 21.978,3.817 21.980,12.020 21.980 C 20.223 21.980,20.468 21.978,20.740 21.903 C 22.211 21.499,23.163 20.110,22.970 18.650 C 22.940 18.426,22.448 16.613,21.603 13.620 C 20.091 8.262,20.167 8.479,19.603 7.920 C 19.244 7.565,18.969 7.379,18.560 7.214 C 18.115 7.034,17.803 7.000,16.596 7.000 C 15.982 7.000,15.480 6.986,15.480 6.968 C 15.480 6.950,15.497 6.919,15.517 6.898 C 15.602 6.811,15.847 6.120,15.921 5.757 C 16.070 5.024,15.994 4.230,15.705 3.516 C 15.172 2.197,14.001 1.269,12.605 1.058 C 12.144 0.989,11.816 0.990,11.358 1.061 M12.523 3.073 C 13.262 3.266,13.850 3.924,13.967 4.690 C 14.029 5.098,13.967 5.522,13.793 5.880 C 13.638 6.198,13.227 6.625,12.930 6.775 C 12.492 6.997,11.962 7.059,11.508 6.940 C 10.823 6.762,10.249 6.194,10.073 5.523 C 9.683 4.028,11.028 2.683,12.523 3.073 M17.880 9.094 C 18.056 9.188,18.270 9.388,18.342 9.525 C 18.372 9.583,18.976 11.680,19.685 14.185 C 21.103 19.200,21.074 19.076,20.881 19.454 C 20.766 19.679,20.612 19.821,20.367 19.926 C 20.200 19.997,19.901 20.000,12.047 20.000 C 6.558 20.000,3.851 19.986,3.751 19.958 C 3.378 19.855,3.040 19.419,3.040 19.042 C 3.040 18.918,3.464 17.317,4.281 14.357 C 4.963 11.884,5.551 9.772,5.586 9.664 C 5.626 9.543,5.715 9.403,5.819 9.299 C 6.135 8.983,5.658 9.005,12.040 9.013 C 17.515 9.020,17.746 9.023,17.880 9.094 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const WeightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Weight = WeightIcon;