@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.01 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-bell-minus" 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.420 1.023 C 11.354 1.033,11.156 1.060,10.980 1.083 C 10.266 1.178,9.490 1.430,8.760 1.806 C 6.903 2.761,5.568 4.534,5.138 6.617 C 5.056 7.013,5.031 7.294,4.999 8.180 C 4.921 10.300,4.711 11.381,4.163 12.500 C 3.866 13.105,3.550 13.542,2.860 14.300 C 2.286 14.932,2.131 15.177,2.044 15.592 C 1.906 16.254,2.109 16.918,2.597 17.400 C 2.885 17.684,3.240 17.883,3.592 17.956 C 3.892 18.018,20.108 18.018,20.408 17.956 C 20.777 17.879,21.117 17.690,21.403 17.404 C 21.892 16.913,22.094 16.253,21.956 15.592 C 21.881 15.235,21.702 14.917,21.346 14.510 C 20.547 13.598,20.073 12.833,19.646 11.770 C 19.433 11.238,19.149 11.022,18.660 11.022 C 18.231 11.022,17.940 11.210,17.763 11.600 C 17.598 11.965,17.672 12.321,18.103 13.232 C 18.573 14.227,19.162 15.106,19.816 15.790 L 20.017 16.000 12.029 16.000 C 7.635 16.000,4.040 15.987,4.040 15.971 C 4.040 15.955,4.164 15.815,4.315 15.661 C 5.651 14.294,6.367 12.918,6.737 11.004 C 6.883 10.250,6.957 9.497,7.000 8.340 C 7.022 7.764,7.065 7.174,7.096 7.017 C 7.277 6.122,7.746 5.231,8.395 4.548 C 9.815 3.055,12.047 2.593,13.945 3.401 C 14.544 3.656,14.898 3.886,15.446 4.380 C 15.849 4.743,16.172 4.837,16.556 4.702 C 16.930 4.570,17.188 4.250,17.227 3.872 C 17.271 3.443,17.125 3.178,16.591 2.720 C 15.579 1.851,14.391 1.298,13.100 1.096 C 12.737 1.039,11.642 0.992,11.420 1.023 M14.695 7.057 C 14.466 7.129,14.256 7.299,14.128 7.516 C 14.037 7.672,14.020 7.746,14.020 8.000 C 14.020 8.256,14.036 8.328,14.131 8.489 C 14.256 8.702,14.449 8.864,14.670 8.943 C 14.891 9.022,21.109 9.022,21.330 8.943 C 21.551 8.864,21.744 8.702,21.869 8.489 C 21.964 8.328,21.980 8.256,21.980 8.000 C 21.980 7.746,21.963 7.672,21.872 7.516 C 21.740 7.293,21.533 7.128,21.290 7.055 C 21.030 6.977,14.945 6.979,14.695 7.057 M9.946 20.065 C 9.698 20.141,9.398 20.433,9.329 20.665 C 9.245 20.947,9.267 21.201,9.398 21.464 C 9.657 21.982,10.195 22.474,10.780 22.729 C 11.253 22.935,11.467 22.979,12.000 22.979 C 12.533 22.979,12.747 22.935,13.220 22.729 C 13.640 22.546,13.983 22.286,14.312 21.902 C 14.811 21.318,14.857 20.735,14.436 20.313 C 14.075 19.951,13.551 19.905,13.148 20.200 C 13.065 20.261,12.935 20.398,12.860 20.503 C 12.693 20.738,12.538 20.863,12.318 20.941 C 11.883 21.094,11.423 20.925,11.143 20.510 C 10.932 20.196,10.583 19.996,10.260 20.003 C 10.194 20.004,10.053 20.032,9.946 20.065 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BellMinusIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const BellMinus = BellMinusIcon;