UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.57 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-plus" 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 M11.695 6.057 C 11.466 6.129,11.256 6.299,11.128 6.516 L 11.020 6.700 11.008 7.850 L 10.995 9.000 9.944 9.000 C 8.797 9.000,8.643 9.022,8.382 9.221 C 8.302 9.282,8.187 9.415,8.128 9.516 C 8.037 9.672,8.020 9.746,8.020 10.000 C 8.020 10.256,8.036 10.328,8.131 10.489 C 8.192 10.592,8.304 10.725,8.381 10.783 C 8.642 10.983,8.738 10.996,9.908 10.998 L 10.995 11.000 11.008 12.153 L 11.020 13.307 11.141 13.503 C 11.543 14.156,12.457 14.156,12.859 13.503 L 12.980 13.307 12.992 12.153 L 13.005 11.000 14.092 10.998 C 15.262 10.996,15.358 10.983,15.619 10.783 C 15.696 10.725,15.808 10.592,15.869 10.489 C 15.964 10.328,15.980 10.256,15.980 10.000 C 15.980 9.746,15.963 9.672,15.872 9.516 C 15.813 9.415,15.698 9.282,15.618 9.221 C 15.357 9.022,15.203 9.000,14.056 9.000 L 13.005 9.000 12.992 7.850 L 12.980 6.700 12.872 6.516 C 12.628 6.101,12.150 5.915,11.695 6.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MessageSquarePlusIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MessageSquarePlus = MessageSquarePlusIcon;