@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.25 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-circle-check-big" 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="M11.340 1.023 C 10.482 1.108,10.235 1.140,9.807 1.226 C 6.444 1.900,3.536 4.176,2.061 7.290 C 1.616 8.230,1.279 9.337,1.114 10.406 C 1.042 10.876,1.025 11.157,1.023 11.960 C 1.020 12.983,1.051 13.319,1.221 14.169 C 2.020 18.146,5.028 21.431,8.888 22.542 C 11.515 23.299,14.134 23.109,16.602 21.983 C 17.865 21.407,18.915 20.655,19.945 19.589 C 21.897 17.569,23.000 14.829,23.000 12.000 C 23.000 11.031,22.852 9.896,22.680 9.539 C 22.533 9.237,22.148 9.000,21.802 9.000 C 21.385 9.000,20.981 9.300,20.853 9.705 C 20.787 9.914,20.787 9.947,20.857 10.412 C 21.059 11.755,21.035 12.796,20.776 13.957 C 19.993 17.456,17.192 20.171,13.680 20.833 C 11.194 21.302,8.619 20.708,6.620 19.206 C 3.691 17.004,2.380 13.253,3.304 9.720 C 4.008 7.032,5.939 4.798,8.491 3.720 C 10.234 2.984,12.160 2.815,14.024 3.235 C 14.781 3.406,15.399 3.637,16.243 4.065 C 16.787 4.340,16.979 4.377,17.326 4.274 C 17.652 4.176,17.936 3.828,17.986 3.464 C 18.049 3.000,17.816 2.642,17.247 2.332 C 16.150 1.733,14.876 1.310,13.600 1.118 C 13.085 1.041,11.735 0.984,11.340 1.023 M21.640 3.068 C 21.483 3.121,20.851 3.738,16.731 7.853 L 12.001 12.577 10.771 11.355 C 9.688 10.279,9.516 10.124,9.343 10.066 C 8.863 9.905,8.382 10.084,8.128 10.516 C 8.037 10.672,8.020 10.746,8.020 11.000 C 8.020 11.254,8.036 11.328,8.127 11.480 C 8.261 11.704,11.368 14.804,11.560 14.905 C 11.754 15.006,12.246 15.007,12.440 14.905 C 12.633 14.805,22.737 4.708,22.873 4.480 C 22.964 4.327,22.980 4.254,22.980 4.000 C 22.980 3.746,22.963 3.672,22.872 3.516 C 22.617 3.083,22.122 2.903,21.640 3.068 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CircleCheckBigIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CircleCheckBig = CircleCheckBigIcon;