@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.19 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-user-round" 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.280 1.023 C 11.203 1.032,10.951 1.059,10.720 1.083 C 8.832 1.283,6.991 2.023,5.360 3.235 C 4.751 3.688,3.684 4.755,3.226 5.367 C 0.728 8.714,0.301 13.032,2.097 16.780 C 3.161 18.999,5.029 20.862,7.250 21.919 C 10.861 23.636,15.062 23.285,18.340 20.991 C 19.145 20.428,20.168 19.435,20.770 18.634 C 23.743 14.676,23.743 9.347,20.770 5.363 C 20.316 4.755,19.247 3.686,18.640 3.235 C 17.045 2.049,15.365 1.360,13.423 1.096 C 13.000 1.038,11.574 0.990,11.280 1.023 M13.320 3.101 C 15.883 3.488,18.124 4.931,19.560 7.120 C 19.863 7.583,20.303 8.479,20.492 9.020 C 20.838 10.013,20.977 10.865,20.977 12.000 C 20.977 12.888,20.919 13.397,20.733 14.160 C 20.437 15.379,19.833 16.602,19.031 17.610 C 18.878 17.803,18.740 17.960,18.725 17.960 C 18.709 17.960,18.637 17.793,18.563 17.590 C 18.037 16.130,16.956 14.820,15.616 14.016 C 15.442 13.912,15.293 13.821,15.284 13.814 C 15.276 13.808,15.420 13.643,15.604 13.449 C 16.273 12.745,16.699 11.931,16.907 10.960 C 17.008 10.489,17.008 9.511,16.907 9.040 C 16.539 7.320,15.370 5.941,13.753 5.320 C 12.699 4.915,11.302 4.915,10.248 5.320 C 9.565 5.582,8.886 6.035,8.384 6.563 C 7.723 7.257,7.301 8.067,7.093 9.040 C 6.992 9.511,6.992 10.489,7.093 10.960 C 7.302 11.937,7.723 12.743,8.391 13.445 C 8.578 13.641,8.724 13.808,8.716 13.814 C 8.707 13.821,8.558 13.912,8.384 14.016 C 7.036 14.824,5.941 16.160,5.418 17.633 C 5.354 17.813,5.289 17.960,5.274 17.960 C 5.259 17.960,5.122 17.803,4.969 17.610 C 4.167 16.602,3.563 15.379,3.267 14.160 C 3.081 13.397,3.023 12.888,3.023 12.000 C 3.023 10.507,3.280 9.379,3.920 8.060 C 4.971 5.891,6.877 4.221,9.160 3.466 C 9.865 3.233,10.432 3.118,11.340 3.024 C 11.662 2.991,12.911 3.039,13.320 3.101 M12.861 7.129 C 13.804 7.405,14.584 8.183,14.875 9.139 C 14.958 9.412,14.973 9.542,14.973 10.000 C 14.973 10.458,14.958 10.588,14.875 10.861 C 14.582 11.822,13.819 12.581,12.840 12.886 C 12.406 13.021,11.594 13.021,11.160 12.886 C 10.181 12.581,9.418 11.822,9.125 10.861 C 9.042 10.588,9.027 10.458,9.027 10.000 C 9.027 9.542,9.042 9.412,9.125 9.139 C 9.456 8.054,10.371 7.245,11.499 7.040 C 11.832 6.980,12.500 7.023,12.861 7.129 M12.552 15.043 C 13.430 15.139,14.183 15.429,14.920 15.955 C 16.000 16.725,16.791 18.029,16.941 19.284 L 16.968 19.509 16.734 19.658 C 16.305 19.930,15.386 20.356,14.840 20.535 C 12.943 21.157,11.058 21.156,9.148 20.531 C 8.599 20.352,7.713 19.940,7.266 19.657 L 7.032 19.509 7.059 19.284 C 7.210 18.022,8.005 16.719,9.100 15.939 C 10.122 15.212,11.300 14.905,12.552 15.043 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CircleUserRoundIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CircleUserRound = CircleUserRoundIcon;