@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.51 kB
JavaScript
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-heart-crack" 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="M6.842 2.041 C 4.203 2.318,1.996 4.160,1.261 6.700 C 1.069 7.362,1.022 7.722,1.024 8.520 C 1.025 9.131,1.041 9.333,1.115 9.680 C 1.398 11.005,1.944 12.059,3.021 13.361 C 3.460 13.891,11.297 21.740,11.520 21.873 C 11.672 21.964,11.746 21.980,12.000 21.980 C 12.254 21.980,12.328 21.964,12.480 21.873 C 12.694 21.746,20.392 14.042,20.866 13.480 C 22.026 12.108,22.592 11.040,22.886 9.671 C 23.002 9.134,23.014 7.977,22.910 7.420 C 22.456 4.984,20.820 3.094,18.500 2.325 C 17.498 1.993,16.303 1.921,15.124 2.123 C 14.107 2.297,13.167 2.729,12.250 3.446 L 12.000 3.641 11.750 3.446 C 10.827 2.724,9.895 2.297,8.856 2.119 C 8.309 2.026,7.343 1.988,6.842 2.041 M8.126 4.042 C 8.800 4.111,9.371 4.284,9.846 4.563 C 10.125 4.727,10.520 5.005,10.520 5.036 C 10.520 5.050,10.231 5.349,9.877 5.700 C 9.090 6.484,9.020 6.591,9.021 7.000 C 9.021 7.213,9.043 7.341,9.095 7.440 C 9.136 7.517,9.711 8.124,10.373 8.790 L 11.578 9.999 10.874 10.710 C 10.486 11.100,10.136 11.483,10.096 11.560 C 10.043 11.660,10.021 11.787,10.021 12.000 C 10.020 12.254,10.036 12.327,10.127 12.480 C 10.257 12.700,11.368 13.804,11.555 13.898 C 12.007 14.128,12.601 13.944,12.867 13.492 C 12.964 13.327,12.980 13.258,12.979 13.000 C 12.978 12.646,12.924 12.524,12.628 12.211 L 12.426 11.997 13.128 11.289 C 13.514 10.899,13.864 10.517,13.904 10.440 C 14.007 10.246,14.007 9.754,13.905 9.560 C 13.864 9.483,13.289 8.875,12.626 8.208 L 11.420 6.997 12.320 6.105 C 13.905 4.533,14.557 4.165,15.982 4.034 C 17.662 3.879,19.137 4.528,20.128 5.857 C 20.859 6.836,21.151 8.165,20.900 9.362 C 20.722 10.208,20.296 11.015,19.528 11.960 C 19.330 12.203,17.676 13.894,15.594 15.980 L 12.001 19.580 8.479 16.060 C 6.542 14.124,4.804 12.360,4.617 12.140 C 3.885 11.278,3.394 10.445,3.180 9.700 C 2.587 7.638,3.593 5.400,5.537 4.459 C 6.338 4.071,7.140 3.942,8.126 4.042 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const HeartCrackIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const HeartCrack = HeartCrackIcon;