UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.62 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-reply" 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.660 6.067 C 9.477 6.122,9.325 6.262,7.825 7.754 C 6.040 9.530,6.001 9.578,6.001 10.000 C 6.001 10.420,6.043 10.472,7.806 12.226 C 8.694 13.109,9.481 13.862,9.555 13.899 C 10.010 14.128,10.601 13.944,10.867 13.492 C 10.964 13.327,10.980 13.258,10.979 13.000 C 10.979 12.787,10.957 12.660,10.904 12.560 C 10.864 12.483,10.514 12.101,10.127 11.710 L 9.423 11.000 12.264 11.000 C 15.463 11.000,15.380 10.993,15.679 11.283 C 15.950 11.547,15.973 11.636,15.998 12.523 L 16.020 13.306 16.141 13.503 C 16.543 14.156,17.457 14.156,17.859 13.503 L 17.980 13.306 17.980 12.383 C 17.980 11.527,17.973 11.438,17.886 11.160 C 17.581 10.182,16.830 9.426,15.861 9.122 L 15.540 9.021 12.483 9.009 L 9.426 8.997 10.128 8.288 C 10.515 7.899,10.864 7.517,10.904 7.440 C 10.957 7.340,10.979 7.213,10.979 7.000 C 10.980 6.745,10.964 6.672,10.872 6.516 C 10.740 6.293,10.533 6.128,10.290 6.055 C 10.062 5.986,9.914 5.989,9.660 6.067 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MessageSquareReplyIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MessageSquareReply = MessageSquareReplyIcon;