@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.3 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-gavel" 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="M13.640 1.068 C 13.485 1.121,13.036 1.553,10.347 4.235 C 8.570 6.008,7.188 7.417,7.127 7.520 C 7.036 7.672,7.020 7.746,7.020 8.000 C 7.020 8.257,7.036 8.327,7.133 8.492 C 7.338 8.842,7.705 9.029,8.105 8.988 C 8.368 8.961,8.523 8.879,8.790 8.627 L 9.004 8.425 9.542 8.962 L 10.080 9.499 6.307 13.279 C 3.819 15.772,2.481 17.141,2.380 17.297 C 2.018 17.856,1.855 18.477,1.893 19.158 C 1.905 19.390,1.945 19.688,1.981 19.820 C 2.259 20.844,3.156 21.741,4.180 22.019 C 4.312 22.055,4.610 22.095,4.842 22.107 C 5.523 22.145,6.144 21.982,6.703 21.620 C 6.859 21.519,8.228 20.181,10.721 17.693 L 14.501 13.920 15.038 14.458 L 15.575 14.996 15.373 15.210 C 15.076 15.524,15.022 15.646,15.021 16.000 C 15.020 16.258,15.036 16.327,15.133 16.492 C 15.263 16.714,15.502 16.901,15.736 16.965 C 15.938 17.019,16.266 16.989,16.445 16.899 C 16.630 16.807,22.737 10.707,22.873 10.480 C 22.964 10.328,22.980 10.254,22.980 10.000 C 22.980 9.746,22.963 9.672,22.872 9.516 C 22.747 9.303,22.550 9.141,22.316 9.058 C 21.944 8.927,21.605 9.019,21.241 9.349 L 20.993 9.573 17.709 6.289 L 14.424 3.004 14.627 2.790 C 14.924 2.476,14.978 2.354,14.979 2.000 C 14.980 1.745,14.964 1.672,14.872 1.516 C 14.617 1.083,14.122 0.903,13.640 1.068 M16.300 7.720 L 19.580 11.000 18.290 12.290 L 17.000 13.580 13.710 10.290 L 10.420 7.000 11.700 5.720 C 12.404 5.016,12.989 4.440,13.000 4.440 C 13.011 4.440,14.496 5.916,16.300 7.720 M9.370 16.211 C 6.648 18.933,5.612 19.945,5.481 20.009 C 4.944 20.270,4.277 20.038,4.000 19.495 C 3.871 19.244,3.860 18.787,3.977 18.540 C 4.028 18.431,5.235 17.195,7.776 14.650 L 11.499 10.920 12.290 11.710 L 13.080 12.500 9.370 16.211 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const GavelIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Gavel = GavelIcon;