UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.52 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-thumbs-down" 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="M5.939 1.058 C 5.015 1.227,4.148 1.903,3.776 2.745 C 3.623 3.091,1.244 11.289,1.194 11.640 C 1.124 12.145,1.213 12.726,1.439 13.223 C 1.796 14.012,2.458 14.591,3.340 14.886 L 3.620 14.979 6.170 14.991 C 7.572 14.998,8.720 15.009,8.720 15.015 C 8.720 15.022,8.559 15.692,8.363 16.504 C 7.894 18.441,7.905 18.381,7.932 19.032 C 7.971 19.955,8.204 20.615,8.747 21.345 C 9.384 22.200,10.330 22.770,11.400 22.944 C 11.846 23.017,12.103 23.014,12.336 22.935 C 12.724 22.803,12.688 22.865,14.612 19.017 C 15.591 17.058,16.440 15.399,16.497 15.331 C 16.555 15.262,16.687 15.164,16.791 15.113 C 16.978 15.021,16.998 15.020,18.780 14.998 C 20.518 14.977,20.590 14.973,20.860 14.884 C 21.843 14.562,22.581 13.817,22.886 12.840 L 22.980 12.540 22.980 8.000 L 22.980 3.460 22.886 3.160 C 22.581 2.182,21.832 1.428,20.861 1.121 L 20.540 1.020 13.380 1.013 C 7.700 1.008,6.162 1.017,5.939 1.058 M16.000 8.138 L 16.000 13.275 15.756 13.406 C 15.439 13.574,14.969 14.015,14.745 14.353 C 14.648 14.500,13.861 16.036,12.996 17.766 L 11.424 20.913 11.262 20.850 C 10.712 20.634,10.243 20.148,10.030 19.574 C 9.960 19.384,9.944 19.253,9.944 18.880 C 9.944 18.425,9.949 18.398,10.476 16.260 C 10.926 14.430,11.004 14.068,10.986 13.888 C 10.962 13.638,10.814 13.365,10.626 13.222 C 10.328 12.995,10.415 13.000,7.082 13.000 C 3.662 13.000,3.776 13.009,3.498 12.727 C 3.419 12.646,3.316 12.508,3.270 12.420 C 3.092 12.082,3.085 12.111,4.391 7.649 C 5.658 3.319,5.625 3.414,5.925 3.191 C 6.182 2.998,6.027 3.004,11.170 3.002 L 16.000 3.000 16.000 8.138 M20.310 3.061 C 20.589 3.144,20.856 3.411,20.939 3.690 C 20.992 3.867,21.000 4.441,21.000 8.001 C 21.000 12.458,21.007 12.319,20.779 12.618 C 20.718 12.698,20.585 12.813,20.484 12.872 L 20.300 12.980 19.150 12.992 L 18.000 13.005 18.000 8.002 L 18.000 3.000 19.053 3.000 C 19.879 3.000,20.150 3.013,20.310 3.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ThumbsDownIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ThumbsDown = ThumbsDownIcon;