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-share" 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.393 2.228,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 C 21.979 15.543,21.980 15.521,21.980 13.620 L 21.980 11.700 21.871 11.514 C 21.479 10.848,20.521 10.848,20.129 11.514 L 20.020 11.700 19.999 13.480 C 19.985 14.768,19.965 15.291,19.929 15.373 C 19.842 15.571,19.673 15.761,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 4.040,3.976 4.630,4.303 4.303 C 4.621 3.985,4.414 4.000,8.537 3.998 C 11.476 3.997,12.209 3.986,12.330 3.943 C 12.551 3.864,12.744 3.702,12.869 3.489 C 12.964 3.328,12.980 3.256,12.980 3.000 C 12.980 2.746,12.963 2.672,12.872 2.516 C 12.813 2.415,12.698 2.282,12.618 2.221 C 12.320 1.994,12.426 2.000,8.404 2.005 C 6.367 2.007,4.609 2.025,4.499 2.043 M15.695 2.057 C 15.466 2.129,15.256 2.299,15.128 2.516 C 15.037 2.672,15.020 2.746,15.020 3.000 C 15.020 3.256,15.036 3.328,15.131 3.489 C 15.192 3.592,15.304 3.725,15.381 3.783 C 15.650 3.989,15.716 3.996,17.199 3.998 L 18.579 4.000 16.874 5.710 C 15.936 6.651,15.138 7.481,15.101 7.555 C 14.872 8.010,15.056 8.601,15.508 8.867 C 15.673 8.964,15.742 8.980,16.000 8.979 C 16.212 8.979,16.341 8.957,16.440 8.905 C 16.517 8.865,17.349 8.065,18.288 7.128 L 19.996 5.425 20.008 6.866 L 20.020 8.306 20.141 8.503 C 20.543 9.156,21.457 9.156,21.859 8.503 L 21.980 8.306 21.991 5.563 C 22.002 3.089,21.996 2.803,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.540 2.003 C 16.466 2.005,15.823 2.017,15.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MessageSquareShareIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MessageSquareShare = MessageSquareShareIcon;