@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.53 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-blend" 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 1.043 C 6.656 1.193,5.096 1.846,3.900 2.847 C 2.985 3.612,2.307 4.477,1.800 5.529 C 0.453 8.317,0.837 11.625,2.789 14.040 C 3.075 14.394,3.761 15.067,4.100 15.326 C 4.941 15.968,6.013 16.492,7.029 16.758 C 7.182 16.798,7.202 16.818,7.242 16.971 C 7.508 17.987,8.032 19.059,8.674 19.900 C 8.933 20.239,9.606 20.925,9.960 21.211 C 12.376 23.164,15.683 23.547,18.474 22.199 C 19.352 21.775,20.049 21.270,20.741 20.554 C 21.389 19.886,21.803 19.294,22.200 18.471 C 23.265 16.267,23.265 13.733,22.200 11.529 C 21.819 10.738,21.394 10.124,20.801 9.504 C 20.105 8.777,19.387 8.251,18.499 7.817 C 18.003 7.574,17.087 7.240,16.918 7.240 C 16.825 7.240,16.821 7.230,16.603 6.540 C 16.153 5.114,15.293 3.844,14.100 2.847 C 12.483 1.494,10.337 0.837,8.207 1.043 M9.564 3.039 C 11.708 3.248,13.514 4.525,14.435 6.482 C 14.522 6.668,14.605 6.860,14.619 6.908 C 14.647 7.006,14.616 7.016,14.102 7.060 C 12.683 7.182,11.070 7.868,9.900 8.847 C 8.216 10.255,7.238 12.130,7.020 14.372 C 6.988 14.698,7.029 14.699,6.333 14.358 C 4.940 13.678,3.833 12.417,3.329 10.940 C 2.832 9.483,2.932 7.749,3.590 6.420 C 3.913 5.768,4.237 5.309,4.731 4.805 C 6.008 3.503,7.757 2.864,9.564 3.039 M14.999 9.090 C 14.993 9.611,14.851 10.414,14.671 10.940 C 13.898 13.208,11.798 14.816,9.390 14.985 L 9.000 15.012 9.001 14.916 C 9.007 14.391,9.148 13.589,9.329 13.060 C 10.078 10.863,12.081 9.270,14.380 9.043 C 14.961 8.985,15.000 8.988,14.999 9.090 M17.518 9.565 C 18.799 10.168,19.768 11.125,20.410 12.420 C 21.068 13.749,21.168 15.483,20.671 16.940 C 19.988 18.944,18.291 20.428,16.160 20.885 C 15.554 21.015,14.446 21.015,13.840 20.885 C 11.916 20.472,10.389 19.269,9.565 17.518 C 9.314 16.983,9.310 17.011,9.628 16.980 C 11.309 16.816,12.787 16.224,14.040 15.211 C 14.394 14.925,15.066 14.239,15.326 13.900 C 16.275 12.657,16.823 11.244,16.980 9.628 C 17.011 9.310,16.983 9.314,17.518 9.565 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`;
export const BlendIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Blend = BlendIcon;