UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.9 kB
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-twitter" 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="M15.275 3.043 C 14.136 3.210,12.976 3.800,12.242 4.584 C 11.507 5.370,11.056 6.346,10.926 7.435 L 10.862 7.969 10.568 7.943 C 9.438 7.840,8.087 7.431,6.920 6.837 C 5.869 6.303,5.213 5.815,4.248 4.852 C 3.592 4.199,3.494 4.115,3.310 4.061 C 3.052 3.984,2.901 3.984,2.675 4.061 C 2.391 4.158,2.227 4.323,2.024 4.717 C 1.113 6.480,0.813 8.491,1.162 10.480 C 1.513 12.477,2.471 14.296,3.909 15.693 C 4.505 16.272,5.006 16.665,5.600 17.019 C 5.924 17.211,5.909 17.197,5.839 17.241 C 5.708 17.323,4.915 17.613,4.520 17.722 C 3.854 17.906,3.438 17.965,2.560 17.995 C 1.654 18.027,1.550 18.052,1.295 18.308 C 1.025 18.578,0.935 18.951,1.054 19.301 C 1.157 19.602,1.288 19.735,1.790 20.046 C 3.461 21.084,5.205 21.701,7.100 21.927 C 7.673 21.995,9.295 21.994,9.840 21.925 C 12.773 21.555,15.389 20.287,17.428 18.248 C 19.587 16.089,20.847 13.398,21.123 10.360 C 21.172 9.815,21.150 8.425,21.084 7.965 L 21.053 7.750 21.365 7.336 C 21.536 7.108,21.787 6.737,21.921 6.511 C 22.408 5.694,22.940 4.487,22.986 4.095 C 23.039 3.645,22.743 3.189,22.316 3.063 C 21.922 2.945,21.775 2.978,21.206 3.311 C 20.742 3.582,20.039 3.917,19.634 4.060 L 19.327 4.168 19.114 4.009 C 18.426 3.497,17.575 3.159,16.684 3.044 C 16.302 2.994,15.609 2.994,15.275 3.043 M16.848 5.099 C 17.334 5.233,17.817 5.501,18.278 5.894 C 18.619 6.186,18.909 6.250,19.475 6.158 C 19.615 6.135,19.738 6.125,19.747 6.134 C 19.757 6.144,19.620 6.320,19.442 6.526 C 18.992 7.046,18.965 7.144,19.054 7.920 C 19.311 10.165,19.026 11.978,18.118 13.870 C 17.537 15.083,16.868 16.020,15.955 16.901 C 13.605 19.170,10.504 20.272,7.400 19.942 C 6.722 19.870,5.426 19.598,5.486 19.541 C 5.494 19.534,5.680 19.461,5.900 19.380 C 7.116 18.931,8.621 17.960,8.879 17.459 C 9.027 17.170,9.023 16.773,8.869 16.511 C 8.714 16.247,8.556 16.142,8.045 15.962 C 5.388 15.026,3.498 12.712,3.099 9.907 C 3.031 9.429,3.022 8.440,3.082 7.959 C 3.125 7.611,3.267 6.942,3.318 6.846 C 3.340 6.807,3.410 6.848,3.584 7.000 C 5.083 8.317,7.299 9.387,9.340 9.780 C 10.332 9.971,11.880 10.066,12.259 9.960 C 12.640 9.854,12.933 9.527,12.984 9.153 C 12.998 9.053,12.986 8.839,12.958 8.676 C 12.877 8.214,12.893 7.598,12.997 7.222 C 13.299 6.121,14.185 5.310,15.360 5.058 C 15.688 4.988,16.528 5.011,16.848 5.099 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const TwitterIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Twitter = TwitterIcon;