@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.01 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-at-sign" 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.043 1.042 C 9.181 1.221,7.442 1.833,5.928 2.840 C 5.198 3.326,4.724 3.722,4.079 4.385 C 1.269 7.275,0.289 11.525,1.540 15.394 C 2.086 17.083,2.937 18.461,4.238 19.763 C 5.989 21.515,7.994 22.518,10.520 22.906 C 11.098 22.994,12.654 23.006,13.280 22.927 C 14.905 22.720,16.467 22.175,17.786 21.352 C 18.721 20.768,18.943 20.538,18.988 20.106 C 19.043 19.575,18.674 19.095,18.153 19.019 C 17.816 18.970,17.676 19.022,17.073 19.425 C 14.691 21.013,11.978 21.408,9.260 20.563 C 7.307 19.955,5.542 18.597,4.428 16.847 C 3.483 15.360,3.024 13.776,3.024 12.000 C 3.024 10.516,3.314 9.276,3.971 7.961 C 5.180 5.538,7.468 3.770,10.123 3.207 C 10.823 3.059,11.208 3.022,12.020 3.022 C 12.927 3.023,13.422 3.085,14.261 3.301 C 16.566 3.896,18.515 5.366,19.749 7.440 C 20.352 8.455,20.725 9.519,20.903 10.736 C 20.985 11.301,21.025 12.980,20.965 13.340 C 20.896 13.748,20.714 14.092,20.403 14.404 C 20.002 14.807,19.547 15.000,19.000 15.000 C 18.317 15.000,17.695 14.654,17.312 14.063 C 17.011 13.597,17.025 13.751,17.001 10.560 L 16.980 7.700 16.871 7.514 C 16.648 7.134,16.208 6.941,15.786 7.035 C 15.394 7.123,15.078 7.448,15.018 7.826 L 14.991 7.993 14.725 7.821 C 13.995 7.351,13.346 7.125,12.470 7.036 C 11.742 6.962,10.898 7.070,10.248 7.320 C 9.067 7.774,8.072 8.675,7.526 9.785 C 7.158 10.533,7.020 11.136,7.020 12.000 C 7.020 12.670,7.078 13.044,7.268 13.600 C 7.846 15.291,9.253 16.525,11.040 16.907 C 11.511 17.008,12.489 17.008,12.960 16.907 C 13.935 16.698,14.795 16.244,15.481 15.575 L 15.741 15.321 15.921 15.547 C 16.019 15.671,16.231 15.885,16.392 16.023 C 18.477 17.809,21.679 17.030,22.704 14.488 C 22.779 14.300,22.879 13.966,22.924 13.744 C 23.001 13.372,23.006 13.246,22.988 12.140 C 22.966 10.795,22.902 10.241,22.662 9.304 C 22.145 7.288,21.143 5.565,19.635 4.098 C 18.807 3.293,17.901 2.653,16.864 2.144 C 15.728 1.585,14.707 1.275,13.425 1.099 C 12.881 1.024,11.556 0.992,11.043 1.042 M12.861 9.129 C 13.804 9.405,14.584 10.183,14.875 11.139 C 14.958 11.412,14.973 11.542,14.973 12.000 C 14.973 12.458,14.958 12.588,14.875 12.861 C 14.582 13.822,13.819 14.581,12.840 14.886 C 12.406 15.021,11.594 15.021,11.160 14.886 C 10.181 14.581,9.418 13.822,9.125 12.861 C 9.042 12.588,9.027 12.458,9.027 12.000 C 9.027 11.542,9.042 11.412,9.125 11.139 C 9.456 10.054,10.371 9.245,11.499 9.040 C 11.832 8.980,12.500 9.023,12.861 9.129 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const AtSignIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const AtSign = AtSignIcon;