@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.41 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-infinity" 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="M5.400 7.044 C 3.761 7.229,2.261 8.290,1.526 9.785 C 1.333 10.177,1.187 10.599,1.093 11.040 C 0.992 11.511,0.992 12.489,1.093 12.960 C 1.526 14.984,3.016 16.474,5.040 16.907 C 5.510 17.008,6.526 17.008,7.000 16.908 C 8.628 16.564,9.967 15.695,11.653 13.888 L 12.000 13.516 12.347 13.888 C 14.035 15.697,15.370 16.563,17.000 16.908 C 17.474 17.008,18.490 17.008,18.960 16.907 C 20.488 16.580,21.748 15.630,22.433 14.288 C 22.838 13.494,22.980 12.899,22.980 12.000 C 22.980 11.552,22.960 11.286,22.907 11.040 C 22.625 9.721,21.863 8.576,20.800 7.874 C 20.018 7.356,19.383 7.128,18.466 7.036 C 17.192 6.906,15.839 7.284,14.600 8.114 C 13.915 8.572,13.110 9.287,12.327 10.132 L 12.001 10.485 11.653 10.112 C 10.510 8.887,9.518 8.093,8.540 7.619 C 7.492 7.112,6.466 6.924,5.400 7.044 M6.847 9.115 C 7.664 9.328,8.370 9.746,9.259 10.545 C 9.657 10.902,10.640 11.938,10.640 12.000 C 10.640 12.066,9.642 13.112,9.218 13.491 C 8.409 14.214,7.705 14.639,6.940 14.866 C 6.629 14.958,6.504 14.973,6.020 14.976 C 5.538 14.979,5.418 14.967,5.160 14.886 C 4.180 14.580,3.417 13.821,3.125 12.861 C 3.044 12.595,3.027 12.451,3.025 12.020 C 3.022 11.408,3.081 11.137,3.320 10.660 C 3.746 9.812,4.552 9.212,5.499 9.040 C 5.800 8.986,6.497 9.024,6.847 9.115 M18.861 9.129 C 19.804 9.405,20.584 10.183,20.875 11.139 C 20.958 11.412,20.973 11.542,20.973 12.000 C 20.973 12.458,20.958 12.588,20.875 12.861 C 20.582 13.822,19.820 14.580,18.840 14.886 C 18.582 14.967,18.462 14.979,17.980 14.976 C 17.496 14.973,17.371 14.958,17.060 14.866 C 16.064 14.570,15.110 13.902,13.998 12.721 C 13.349 12.033,13.341 12.021,13.413 11.918 C 13.561 11.707,14.532 10.721,14.922 10.385 C 15.807 9.624,16.568 9.217,17.396 9.059 C 17.821 8.979,18.449 9.008,18.861 9.129 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const InfinityIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Infinity = InfinityIcon;