@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.76 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-message-circle-off" 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="M1.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.037 1.672,1.020 1.746,1.020 2.000 C 1.020 2.254,1.036 2.327,1.127 2.480 C 1.187 2.579,1.910 3.334,2.734 4.157 L 4.234 5.654 4.055 5.886 C 3.393 6.747,2.757 8.036,2.424 9.193 C 1.913 10.969,1.910 12.909,2.414 14.680 C 2.525 15.071,2.763 15.732,2.859 15.918 C 2.924 16.045,2.923 16.049,1.962 18.934 C 1.343 20.794,1.000 21.881,1.000 21.984 C 1.000 22.536,1.466 23.001,2.017 23.000 C 2.123 23.000,3.193 22.662,5.057 22.041 L 7.934 21.082 8.117 21.165 C 9.898 21.965,12.115 22.196,14.005 21.778 C 15.509 21.445,17.030 20.724,18.062 19.854 L 18.264 19.684 19.802 21.224 C 20.648 22.072,21.421 22.813,21.520 22.873 C 21.673 22.964,21.746 22.980,22.000 22.980 C 22.257 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M10.660 2.118 C 9.713 2.255,8.766 2.517,8.487 2.719 C 8.309 2.848,8.149 3.121,8.103 3.372 C 8.043 3.702,8.294 4.204,8.596 4.358 C 8.909 4.518,9.077 4.529,9.487 4.419 C 10.689 4.097,11.267 4.019,12.228 4.051 C 12.928 4.074,13.352 4.134,14.008 4.301 C 16.752 5.003,18.996 7.247,19.699 9.992 C 19.906 10.800,19.939 11.083,19.937 12.040 C 19.936 13.056,19.901 13.318,19.636 14.289 C 19.515 14.735,19.482 14.914,19.503 15.029 C 19.628 15.713,20.307 16.075,20.931 15.789 C 21.234 15.651,21.368 15.456,21.539 14.903 C 21.835 13.952,21.959 13.096,21.960 12.011 C 21.961 9.320,20.920 6.836,18.993 4.932 C 17.460 3.417,15.741 2.543,13.540 2.157 C 12.836 2.034,11.380 2.014,10.660 2.118 M16.793 18.308 C 16.769 18.337,16.612 18.457,16.443 18.575 C 14.986 19.596,13.132 20.112,11.439 19.967 C 10.407 19.879,9.681 19.683,8.710 19.232 C 8.003 18.903,8.177 18.876,5.722 19.697 C 4.569 20.082,3.620 20.393,3.613 20.387 C 3.607 20.380,3.917 19.431,4.303 18.278 C 5.123 15.824,5.094 16.009,4.770 15.280 C 4.235 14.075,4.042 13.208,4.041 11.997 C 4.039 10.399,4.508 8.821,5.382 7.487 L 5.653 7.073 11.245 12.665 C 15.572 16.992,16.827 18.268,16.793 18.308 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MessageCircleOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MessageCircleOff = MessageCircleOffIcon;