@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.65 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-crown" 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.717 2.039 C 11.445 2.087,11.122 2.265,10.920 2.479 C 10.779 2.628,10.412 3.294,9.244 5.515 C 8.421 7.080,7.736 8.360,7.721 8.360 C 7.706 8.360,6.714 7.522,5.517 6.498 C 4.069 5.259,3.266 4.600,3.120 4.528 C 2.925 4.433,2.854 4.420,2.500 4.420 C 2.139 4.420,2.078 4.431,1.880 4.533 C 1.510 4.724,1.338 4.893,1.171 5.229 C 1.031 5.514,1.020 5.560,1.023 5.878 C 1.025 6.201,1.106 6.511,2.473 11.440 C 3.406 14.803,3.965 16.748,4.043 16.909 C 4.193 17.217,4.549 17.580,4.865 17.748 C 5.368 18.016,4.925 18.000,12.000 18.000 C 19.075 18.000,18.632 18.016,19.135 17.748 C 19.451 17.580,19.807 17.217,19.957 16.909 C 20.122 16.569,22.960 6.318,22.988 5.960 C 23.012 5.655,22.908 5.293,22.717 5.015 C 22.562 4.791,22.200 4.534,21.925 4.454 C 21.606 4.361,21.153 4.395,20.871 4.533 C 20.726 4.604,19.923 5.264,18.478 6.500 C 17.283 7.523,16.293 8.360,16.279 8.360 C 16.265 8.360,15.580 7.080,14.757 5.516 C 13.605 3.327,13.218 2.627,13.080 2.478 C 12.758 2.132,12.202 1.953,11.717 2.039 M13.305 7.063 C 14.665 9.649,14.758 9.796,15.192 10.075 C 15.790 10.458,16.573 10.491,17.196 10.159 C 17.324 10.091,18.090 9.465,18.980 8.703 C 19.838 7.968,20.545 7.372,20.551 7.378 C 20.558 7.384,20.027 9.327,19.373 11.695 L 18.182 16.000 12.000 16.000 L 5.818 16.000 4.627 11.695 C 3.973 9.327,3.442 7.385,3.448 7.379 C 3.455 7.373,4.162 7.969,5.020 8.704 C 5.902 9.459,6.677 10.091,6.804 10.159 C 7.426 10.491,8.210 10.458,8.808 10.075 C 9.242 9.796,9.335 9.649,10.695 7.063 C 11.396 5.731,11.984 4.640,12.000 4.640 C 12.016 4.640,12.604 5.731,13.305 7.063 M4.695 20.057 C 4.466 20.129,4.256 20.299,4.128 20.516 C 4.037 20.672,4.020 20.746,4.020 21.000 C 4.020 21.256,4.036 21.328,4.131 21.489 C 4.256 21.702,4.449 21.864,4.670 21.943 C 4.893 22.022,19.107 22.022,19.330 21.943 C 19.551 21.864,19.744 21.702,19.869 21.489 C 19.964 21.328,19.980 21.256,19.980 21.000 C 19.980 20.746,19.963 20.672,19.872 20.516 C 19.740 20.293,19.533 20.128,19.290 20.055 C 19.027 19.976,4.947 19.978,4.695 20.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CrownIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Crown = CrownIcon;