UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.33 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-angry" 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 2.643 17.918,3.276 18.801,4.238 19.762 C 5.199 20.724,6.082 21.357,7.220 21.903 C 10.967 23.699,15.288 23.270,18.637 20.770 C 19.246 20.316,20.316 19.246,20.770 18.637 C 23.744 14.652,23.744 9.348,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 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.138 20.060,14.876 20.588,13.908 20.797 C 11.266 21.366,8.479 20.708,6.370 19.019 C 4.857 17.807,3.722 16.029,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 M7.240 7.035 C 7.042 7.100,6.892 7.197,6.752 7.352 C 6.420 7.720,6.420 8.280,6.752 8.648 C 6.914 8.828,7.076 8.915,7.700 9.160 C 7.942 9.254,8.154 9.345,8.172 9.360 C 8.190 9.376,8.163 9.458,8.112 9.544 C 8.038 9.670,8.020 9.759,8.020 10.000 C 8.020 10.257,8.036 10.327,8.133 10.492 C 8.551 11.204,9.577 11.151,9.917 10.400 C 9.962 10.301,9.999 10.171,9.999 10.110 C 10.000 10.031,10.020 10.000,10.073 10.000 C 10.246 10.000,10.544 9.858,10.701 9.701 C 11.092 9.310,11.092 8.690,10.702 8.300 C 10.555 8.153,10.388 8.075,9.159 7.583 C 7.751 7.020,7.503 6.949,7.240 7.035 M16.080 7.093 C 15.937 7.145,15.290 7.402,14.641 7.662 C 13.605 8.078,13.443 8.155,13.298 8.300 C 12.908 8.690,12.908 9.310,13.299 9.701 C 13.454 9.857,13.754 10.000,13.923 10.000 C 13.973 10.000,13.998 10.047,14.018 10.179 C 14.054 10.422,14.258 10.712,14.497 10.859 C 14.671 10.966,14.729 10.980,14.997 10.979 C 15.228 10.978,15.338 10.958,15.460 10.893 C 15.942 10.636,16.132 10.065,15.901 9.569 L 15.802 9.357 15.891 9.323 C 16.322 9.156,16.835 8.944,16.954 8.882 C 17.536 8.582,17.675 7.793,17.228 7.326 C 16.929 7.014,16.519 6.931,16.080 7.093 M11.460 13.025 C 10.481 13.131,9.553 13.476,8.683 14.057 C 7.909 14.573,7.187 15.298,7.057 15.689 C 6.829 16.376,7.383 17.062,8.105 16.988 C 8.406 16.957,8.513 16.886,9.010 16.386 C 9.690 15.703,10.326 15.319,11.113 15.116 C 12.479 14.765,13.960 15.267,15.068 16.458 C 15.434 16.851,15.599 16.957,15.888 16.987 C 16.617 17.062,17.172 16.379,16.943 15.689 C 16.813 15.298,16.091 14.573,15.317 14.057 C 14.598 13.577,13.800 13.241,13.040 13.100 C 12.701 13.036,11.763 12.992,11.460 13.025 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const AngryIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Angry = AngryIcon;