@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.47 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-non-binary" 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.695 1.057 C 11.466 1.129,11.256 1.299,11.128 1.516 L 11.020 1.700 11.000 2.984 L 10.980 4.268 9.910 3.658 C 8.793 3.021,8.624 2.954,8.312 3.021 C 7.787 3.135,7.412 3.673,7.517 4.163 C 7.616 4.623,7.719 4.712,8.969 5.420 C 9.513 5.728,9.958 5.989,9.958 6.000 C 9.959 6.011,9.515 6.272,8.971 6.580 C 7.715 7.292,7.615 7.379,7.517 7.837 C 7.375 8.500,8.075 9.145,8.742 8.965 C 8.831 8.941,9.376 8.652,9.952 8.324 L 11.001 7.726 10.990 9.410 L 10.980 11.093 10.700 11.149 C 10.333 11.223,9.770 11.417,9.420 11.590 C 7.681 12.451,6.521 13.942,6.115 15.840 C 5.984 16.450,5.984 17.558,6.114 18.160 C 6.639 20.588,8.417 22.365,10.840 22.885 C 11.446 23.015,12.554 23.015,13.160 22.885 C 14.397 22.620,15.412 22.068,16.269 21.195 C 17.109 20.340,17.626 19.369,17.885 18.160 C 17.960 17.810,17.975 17.617,17.975 17.000 C 17.975 16.383,17.960 16.190,17.885 15.840 C 17.477 13.936,16.323 12.453,14.580 11.590 C 14.230 11.417,13.667 11.223,13.300 11.149 L 13.020 11.093 13.010 9.410 L 12.999 7.726 14.048 8.324 C 14.624 8.652,15.169 8.941,15.258 8.965 C 15.925 9.145,16.625 8.500,16.483 7.837 C 16.385 7.379,16.285 7.292,15.029 6.580 C 14.485 6.272,14.041 6.011,14.042 6.000 C 14.042 5.989,14.487 5.728,15.031 5.420 C 16.281 4.712,16.384 4.623,16.483 4.163 C 16.588 3.673,16.213 3.135,15.688 3.021 C 15.376 2.954,15.207 3.021,14.090 3.658 L 13.020 4.268 13.000 2.984 L 12.980 1.700 12.872 1.516 C 12.628 1.101,12.150 0.915,11.695 1.057 M12.605 13.058 C 13.855 13.247,14.964 14.042,15.536 15.160 C 15.767 15.611,15.871 15.930,15.942 16.395 C 16.014 16.879,16.014 17.121,15.942 17.605 C 15.691 19.265,14.434 20.579,12.773 20.917 C 10.563 21.368,8.396 19.845,8.058 17.605 C 7.986 17.121,7.986 16.879,8.058 16.395 C 8.314 14.698,9.675 13.324,11.358 13.061 C 11.816 12.990,12.144 12.989,12.605 13.058 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const NonBinaryIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const NonBinary = NonBinaryIcon;