UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.38 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-shield-ban" 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.604 1.045 C 11.191 1.114,10.816 1.325,10.220 1.823 C 9.149 2.719,7.340 3.615,6.066 3.881 C 5.851 3.926,5.428 3.979,5.127 3.998 C 4.612 4.032,4.476 4.060,4.045 4.219 C 3.779 4.317,3.672 4.381,3.532 4.527 C 3.387 4.678,3.103 5.287,3.039 5.586 C 3.010 5.723,3.001 7.081,3.011 9.923 C 3.026 14.372,3.020 14.237,3.241 15.257 C 3.875 18.178,5.973 20.521,9.353 22.079 C 10.043 22.397,10.735 22.675,11.320 22.868 C 11.698 22.993,11.774 23.005,12.080 22.990 C 12.308 22.978,12.525 22.937,12.740 22.863 C 14.234 22.353,15.900 21.520,16.980 20.745 C 18.095 19.945,19.034 18.966,19.667 17.946 C 20.148 17.171,20.568 16.135,20.759 15.257 C 20.980 14.237,20.974 14.371,20.989 9.934 C 21.005 5.448,21.008 5.530,20.784 5.088 C 20.572 4.670,20.056 4.230,19.623 4.097 C 19.511 4.063,19.174 4.018,18.873 3.999 C 17.911 3.935,17.061 3.701,16.034 3.217 C 15.145 2.798,14.399 2.331,13.680 1.743 C 13.220 1.367,13.114 1.295,12.853 1.185 C 12.453 1.017,12.048 0.972,11.604 1.045 M12.282 3.186 C 14.106 4.743,16.618 5.858,18.588 5.985 L 19.005 6.012 18.989 9.936 C 18.972 14.203,18.977 14.107,18.737 15.059 C 18.626 15.500,18.398 16.104,18.348 16.093 C 18.277 16.077,6.524 5.860,6.551 5.838 C 6.567 5.826,6.742 5.774,6.940 5.724 C 8.471 5.336,10.399 4.312,11.718 3.186 C 11.837 3.084,11.964 3.000,12.000 3.000 C 12.036 3.000,12.163 3.084,12.282 3.186 M11.457 12.788 C 14.624 15.533,17.221 17.800,17.229 17.824 C 17.244 17.873,16.614 18.502,16.280 18.770 C 15.277 19.576,13.977 20.274,12.358 20.877 L 12.016 21.005 11.538 20.826 C 9.667 20.129,8.243 19.300,7.212 18.307 C 5.874 17.018,5.191 15.570,5.041 13.704 C 5.018 13.410,5.000 11.899,5.000 10.191 L 5.000 7.194 5.350 7.495 C 5.543 7.660,8.291 10.042,11.457 12.788 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ShieldBanIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ShieldBan = ShieldBanIcon;