UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.48 kB
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-x" 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="M4.499 2.043 C 3.390 2.230,2.488 3.024,2.114 4.140 L 2.020 4.420 2.009 12.779 C 1.998 21.900,1.983 21.306,2.224 21.621 C 2.283 21.700,2.415 21.813,2.516 21.872 C 2.672 21.964,2.745 21.980,3.000 21.979 C 3.212 21.979,3.341 21.957,3.440 21.905 C 3.517 21.865,4.444 20.970,5.500 19.917 L 7.420 18.002 13.500 17.991 L 19.580 17.980 19.860 17.886 C 20.851 17.554,21.582 16.816,21.886 15.840 L 21.980 15.540 21.980 10.000 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 12.120 2.014 C 8.039 2.011,4.609 2.024,4.499 2.043 M19.310 4.061 C 19.589 4.144,19.856 4.411,19.939 4.690 C 19.992 4.868,20.000 5.546,20.000 10.001 C 20.000 14.212,19.990 15.139,19.945 15.290 C 19.872 15.533,19.707 15.740,19.484 15.872 L 19.300 15.980 13.020 16.000 C 6.931 16.019,6.735 16.022,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.736 C 4.000 5.728,4.007 4.870,4.061 4.690 C 4.140 4.421,4.412 4.143,4.673 4.063 C 4.964 3.974,19.009 3.971,19.310 4.061 M9.044 6.625 C 8.787 6.753,8.583 7.016,8.529 7.289 C 8.482 7.527,8.535 7.851,8.649 8.019 C 8.694 8.085,9.147 8.559,9.655 9.070 L 10.579 10.000 9.655 10.930 C 9.147 11.442,8.695 11.914,8.651 11.980 C 8.376 12.389,8.513 13.026,8.940 13.320 C 9.238 13.525,9.740 13.540,10.017 13.352 C 10.085 13.306,10.558 12.853,11.070 12.345 L 12.000 11.421 12.930 12.345 C 13.442 12.853,13.915 13.306,13.981 13.351 C 14.262 13.541,14.762 13.525,15.065 13.317 C 15.478 13.033,15.618 12.376,15.351 11.981 C 15.306 11.915,14.853 11.442,14.345 10.930 L 13.421 10.001 14.369 9.050 C 15.074 8.343,15.337 8.052,15.398 7.914 C 15.695 7.241,15.230 6.518,14.502 6.521 C 14.089 6.522,13.997 6.588,12.950 7.631 L 12.000 8.578 11.050 7.631 C 10.371 6.954,10.049 6.661,9.920 6.603 C 9.654 6.483,9.313 6.492,9.044 6.625 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MessageSquareXIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MessageSquareX = MessageSquareXIcon;