@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.16 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-bean-off" 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="M1.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.037 1.672,1.020 1.746,1.020 2.000 C 1.020 2.254,1.036 2.327,1.127 2.480 C 1.188 2.582,2.576 4.000,4.317 5.740 C 6.013 7.434,7.400 8.832,7.400 8.847 C 7.400 8.879,6.826 9.069,6.220 9.237 C 5.145 9.535,4.319 9.963,3.498 10.647 C 2.767 11.256,2.200 11.977,1.760 12.860 C 1.267 13.848,1.048 14.697,1.012 15.760 C 0.910 18.803,2.728 21.503,5.601 22.573 C 6.480 22.900,7.357 23.025,8.513 22.986 C 11.753 22.879,14.926 21.703,17.374 19.702 C 17.591 19.525,17.794 19.362,17.824 19.340 C 17.867 19.310,18.289 19.709,19.650 21.066 C 20.623 22.037,21.483 22.865,21.560 22.905 C 21.659 22.957,21.788 22.979,22.000 22.979 C 22.258 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M15.240 1.045 C 13.175 1.282,11.322 2.408,10.185 4.115 C 9.623 4.960,9.520 5.335,9.733 5.770 C 9.864 6.037,9.948 6.116,10.300 6.297 C 10.926 6.619,11.321 7.006,11.649 7.619 C 11.872 8.036,11.995 8.171,12.250 8.281 C 12.927 8.572,13.649 8.102,13.651 7.367 C 13.652 6.938,13.093 6.012,12.474 5.418 C 12.312 5.262,12.137 5.106,12.085 5.070 L 11.989 5.005 12.110 4.852 C 12.326 4.580,12.912 4.043,13.190 3.864 C 14.306 3.145,15.502 2.872,16.720 3.059 C 17.857 3.234,18.731 3.675,19.520 4.474 C 20.264 5.227,20.721 6.067,20.900 7.011 C 21.087 7.997,20.971 9.669,20.615 11.119 C 20.373 12.107,20.185 12.618,19.670 13.697 C 19.320 14.430,19.272 14.625,19.361 14.942 C 19.426 15.177,19.706 15.489,19.930 15.580 C 20.142 15.665,20.495 15.670,20.683 15.591 C 20.966 15.471,21.114 15.291,21.398 14.723 C 22.297 12.929,22.765 11.275,22.941 9.281 C 23.101 7.473,22.920 6.260,22.296 4.960 C 21.023 2.307,18.146 0.711,15.240 1.045 M10.249 11.722 C 10.184 11.777,9.837 11.885,9.544 11.941 C 8.641 12.113,7.714 11.860,7.031 11.254 L 6.882 11.122 7.051 11.080 C 7.458 10.977,8.224 10.691,8.548 10.520 L 8.900 10.335 9.589 11.016 C 9.968 11.391,10.265 11.709,10.249 11.722 M6.033 13.020 C 7.587 14.186,9.822 14.315,11.492 13.336 C 11.620 13.261,11.737 13.200,11.752 13.200 C 11.792 13.200,16.460 17.874,16.438 17.892 C 15.363 18.773,14.461 19.348,13.434 19.809 C 11.754 20.563,10.178 20.933,8.420 20.986 C 7.304 21.019,6.602 20.883,5.774 20.472 C 4.394 19.786,3.423 18.513,3.094 16.960 C 2.997 16.505,2.997 15.432,3.094 15.006 C 3.328 13.973,3.756 13.198,4.507 12.446 L 4.961 11.992 5.325 12.377 C 5.526 12.589,5.844 12.878,6.033 13.020 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BeanOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const BeanOff = BeanOffIcon;