@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.09 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-square-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.400,1.096 2.523,1.754 3.176 L 2.274 3.693 2.200 3.881 C 1.992 4.409,2.000 4.031,2.002 12.928 C 2.003 19.717,2.013 21.207,2.057 21.330 C 2.241 21.845,2.796 22.112,3.325 21.940 C 3.527 21.874,3.660 21.750,5.481 19.935 L 7.423 18.000 12.001 18.000 L 16.580 18.000 18.960 20.383 C 20.282 21.706,21.420 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 M8.695 2.057 C 8.465 2.129,8.256 2.299,8.128 2.516 C 8.037 2.672,8.020 2.746,8.020 3.000 C 8.020 3.256,8.036 3.328,8.131 3.489 C 8.256 3.702,8.449 3.864,8.670 3.943 C 8.792 3.987,9.771 3.997,13.963 3.998 C 19.717 4.000,19.369 3.983,19.679 4.283 C 20.005 4.600,19.978 4.102,20.000 10.023 L 20.020 15.306 20.141 15.503 C 20.543 16.156,21.457 16.156,21.859 15.503 L 21.980 15.306 21.980 9.883 L 21.980 4.460 21.886 4.160 C 21.581 3.182,20.832 2.428,19.861 2.121 L 19.540 2.020 14.200 2.012 C 9.900 2.006,8.828 2.015,8.695 2.057 M10.650 16.000 C 6.899 16.019,6.733 16.023,6.580 16.097 C 6.480 16.145,5.963 16.627,5.210 17.375 L 4.000 18.577 4.000 11.999 L 4.000 5.420 9.280 10.700 L 14.560 15.980 10.650 16.000 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MessageSquareOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MessageSquareOff = MessageSquareOffIcon;