@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.59 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-off" 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="M1.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.036 1.672,1.020 1.745,1.021 2.000 C 1.021 2.213,1.043 2.340,1.095 2.440 C 1.136 2.517,1.512 2.925,1.931 3.348 L 2.693 4.115 2.471 4.388 C 1.790 5.225,1.297 6.297,1.095 7.380 C 0.983 7.976,0.993 9.109,1.115 9.680 C 1.397 11.003,1.943 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.327 21.964,12.480 21.873 C 12.579 21.813,13.524 20.900,14.580 19.843 L 16.499 17.920 18.960 20.376 C 20.313 21.727,21.483 22.865,21.560 22.905 C 21.659 22.957,21.788 22.979,22.000 22.979 C 22.258 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M15.671 2.044 C 14.401 2.167,13.319 2.610,12.250 3.446 L 12.000 3.641 11.770 3.453 C 10.689 2.572,8.981 1.926,8.386 2.175 C 7.888 2.383,7.633 2.989,7.840 3.471 C 7.964 3.759,8.214 3.980,8.507 4.059 C 9.654 4.371,10.188 4.670,11.068 5.493 C 11.541 5.936,11.623 5.978,12.000 5.978 C 12.374 5.978,12.458 5.935,12.913 5.511 C 13.972 4.523,14.754 4.147,15.982 4.034 C 17.662 3.879,19.137 4.528,20.128 5.857 C 20.609 6.500,20.891 7.261,20.969 8.120 C 21.106 9.637,20.499 10.957,18.845 12.736 C 18.519 13.086,18.428 13.212,18.380 13.373 C 18.304 13.627,18.305 13.695,18.384 13.963 C 18.431 14.119,18.501 14.232,18.635 14.366 C 18.982 14.714,19.498 14.765,19.894 14.491 C 20.081 14.361,20.752 13.631,21.209 13.060 C 22.851 11.008,23.366 8.868,22.739 6.699 C 22.218 4.897,20.916 3.384,19.220 2.609 C 18.112 2.102,16.963 1.920,15.671 2.044 M9.610 11.030 L 15.080 16.500 13.540 18.040 L 12.000 19.580 8.478 16.060 C 6.542 14.124,4.804 12.360,4.617 12.140 C 3.887 11.281,3.394 10.444,3.182 9.707 C 2.871 8.623,2.981 7.498,3.499 6.474 C 3.667 6.141,4.058 5.560,4.113 5.560 C 4.128 5.560,6.602 8.022,9.610 11.030 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const HeartOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const HeartOff = HeartOffIcon;