UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.26 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-circle-heart" 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="M10.860 2.063 C 8.276 2.375,5.998 3.611,4.301 5.620 C 3.667 6.371,2.955 7.611,2.624 8.540 C 2.178 9.793,1.964 11.123,2.015 12.315 C 2.070 13.586,2.332 14.793,2.782 15.844 L 2.921 16.168 1.975 18.954 C 1.455 20.486,1.021 21.816,1.010 21.910 C 0.966 22.275,1.172 22.670,1.508 22.867 C 1.670 22.962,1.744 22.980,1.980 22.979 C 2.239 22.978,2.466 22.908,5.045 22.028 L 7.831 21.079 8.156 21.218 C 8.880 21.528,9.900 21.801,10.800 21.926 C 11.345 22.001,12.786 21.991,13.332 21.907 C 15.342 21.600,17.049 20.836,18.500 19.591 C 20.471 17.902,21.703 15.536,21.963 12.943 C 22.029 12.284,21.990 11.040,21.885 10.418 C 21.525 8.301,20.636 6.541,19.162 5.026 C 17.478 3.295,15.362 2.283,12.926 2.041 C 12.377 1.987,11.406 1.997,10.860 2.063 M12.982 4.063 C 14.809 4.302,16.380 5.070,17.655 6.345 C 19.639 8.328,20.424 11.146,19.766 13.920 C 19.433 15.322,18.593 16.757,17.495 17.797 C 16.315 18.915,14.992 19.574,13.300 19.887 C 12.665 20.004,11.475 20.014,10.840 19.907 C 9.998 19.765,9.260 19.535,8.500 19.178 C 8.226 19.049,8.140 19.027,7.900 19.027 C 7.642 19.027,7.464 19.080,5.620 19.710 C 4.521 20.086,3.617 20.390,3.613 20.386 C 3.608 20.382,3.913 19.479,4.289 18.379 C 5.109 15.982,5.093 16.076,4.784 15.400 C 4.178 14.079,3.948 12.874,4.040 11.502 C 4.171 9.545,4.908 7.861,6.245 6.461 C 7.973 4.652,10.530 3.741,12.982 4.063 M13.680 7.505 C 13.130 7.571,12.515 7.794,12.102 8.078 L 11.919 8.205 11.809 8.128 C 11.636 8.008,11.240 7.810,11.000 7.725 C 10.625 7.590,10.318 7.543,9.840 7.546 C 8.056 7.557,6.632 8.886,6.460 10.701 C 6.411 11.222,6.570 11.981,6.842 12.520 C 7.031 12.894,7.256 13.154,8.031 13.897 C 8.443 14.291,9.394 15.211,10.145 15.942 C 11.377 17.141,11.530 17.277,11.720 17.340 C 11.975 17.425,12.279 17.404,12.505 17.286 C 12.651 17.210,16.100 13.889,16.555 13.385 C 17.197 12.676,17.527 11.837,17.524 10.920 C 17.522 9.822,17.065 8.871,16.247 8.258 C 15.821 7.939,15.359 7.704,14.956 7.603 C 14.653 7.527,13.949 7.473,13.680 7.505 M14.570 9.583 C 14.736 9.642,14.997 9.815,15.175 9.983 C 15.473 10.266,15.606 10.917,15.459 11.367 C 15.303 11.843,15.254 11.897,12.953 14.126 L 12.045 15.004 10.613 13.611 C 9.825 12.845,9.079 12.124,8.957 12.009 C 8.680 11.751,8.524 11.472,8.479 11.154 C 8.388 10.512,8.713 9.926,9.313 9.647 C 9.502 9.559,9.597 9.542,9.880 9.542 C 10.323 9.542,10.543 9.643,11.000 10.056 C 11.502 10.511,11.634 10.580,12.000 10.580 C 12.255 10.580,12.328 10.564,12.486 10.471 C 12.589 10.410,12.731 10.284,12.803 10.191 C 13.133 9.760,13.322 9.625,13.720 9.534 C 13.964 9.479,14.333 9.500,14.570 9.583 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MessageCircleHeartIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MessageCircleHeart = MessageCircleHeartIcon;