UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.98 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-chrome" 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 7.388 1.436,4.302 3.442,2.524 6.410 C 1.015 8.929,0.600 12.151,1.417 14.990 C 1.960 16.876,2.839 18.364,4.238 19.762 C 5.199 20.724,6.082 21.357,7.220 21.903 C 10.968 23.699,15.287 23.271,18.637 20.770 C 19.246 20.316,20.316 19.246,20.770 18.637 C 22.641 16.131,23.368 13.082,22.820 10.038 C 22.517 8.350,21.829 6.782,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.742 3.467,17.913 4.797,19.337 6.790 L 19.488 7.000 15.662 7.000 C 11.734 7.000,11.343 7.013,10.760 7.162 C 9.389 7.512,8.090 8.561,7.533 9.768 C 7.474 9.896,7.416 10.000,7.403 9.999 C 7.385 9.999,5.209 6.262,5.169 6.161 C 5.149 6.111,5.972 5.305,6.360 4.994 C 7.658 3.954,9.238 3.280,10.840 3.083 C 11.431 3.010,11.485 3.007,12.200 3.023 C 12.585 3.031,13.089 3.066,13.320 3.101 M5.795 11.260 C 6.785 12.976,7.691 14.531,7.808 14.715 C 8.242 15.401,8.962 16.050,9.713 16.433 C 10.499 16.834,11.101 16.979,11.983 16.980 L 12.586 16.980 12.457 17.200 C 12.387 17.321,11.894 18.176,11.362 19.100 C 10.829 20.024,10.379 20.796,10.360 20.815 C 10.312 20.864,9.797 20.743,9.140 20.529 C 8.513 20.324,7.576 19.870,7.040 19.511 C 5.157 18.249,3.791 16.312,3.267 14.160 C 3.081 13.397,3.023 12.888,3.023 12.000 C 3.023 11.113,3.081 10.603,3.266 9.840 C 3.453 9.072,3.891 7.961,3.959 8.080 C 3.978 8.113,4.804 9.544,5.795 11.260 M12.861 9.129 C 13.804 9.405,14.585 10.184,14.875 11.139 C 15.014 11.598,15.018 12.355,14.884 12.832 C 14.616 13.781,13.820 14.581,12.840 14.886 C 12.406 15.021,11.594 15.021,11.160 14.886 C 10.169 14.578,9.392 13.791,9.112 12.813 C 8.981 12.358,8.987 11.593,9.125 11.139 C 9.455 10.055,10.371 9.245,11.499 9.040 C 11.832 8.980,12.500 9.023,12.861 9.129 M20.565 9.234 C 20.843 10.050,20.977 10.952,20.977 12.000 C 20.977 13.493,20.720 14.621,20.080 15.940 C 19.375 17.394,18.311 18.607,16.927 19.532 C 16.092 20.090,14.818 20.612,13.791 20.817 C 13.356 20.904,12.600 21.003,12.600 20.973 C 12.600 20.967,13.439 19.509,14.464 17.733 C 15.489 15.957,16.395 14.368,16.478 14.202 C 16.839 13.482,16.980 12.862,16.980 12.000 C 16.980 11.330,16.922 10.957,16.732 10.400 C 16.605 10.029,16.361 9.534,16.155 9.230 L 15.999 8.999 18.246 9.010 L 20.492 9.020 20.565 9.234 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const ChromeIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Chrome = ChromeIcon;