@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.24 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-shield-half" 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.525 1.059 C 11.110 1.159,10.789 1.347,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.999 C 4.493 4.040,4.264 4.100,3.937 4.312 C 3.486 4.604,3.141 5.091,3.040 5.582 C 3.010 5.725,3.001 7.075,3.011 9.925 C 3.026 14.371,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.242 1.384,13.122 1.302,12.900 1.203 C 12.456 1.007,11.956 0.954,11.525 1.059 M10.983 20.590 C 10.954 20.619,10.203 20.286,9.650 19.998 C 8.613 19.458,7.878 18.948,7.212 18.307 C 5.874 17.018,5.191 15.570,5.041 13.704 C 5.017 13.400,5.000 11.716,5.000 9.600 L 5.000 6.012 5.427 5.984 C 6.943 5.886,8.802 5.197,10.454 4.120 L 10.980 3.777 10.990 12.175 C 10.996 16.794,10.993 20.581,10.983 20.590 M14.343 4.603 C 15.776 5.406,17.301 5.902,18.588 5.985 L 19.005 6.012 18.989 9.936 C 18.972 14.198,18.977 14.108,18.739 15.051 C 18.337 16.647,17.319 18.055,15.776 19.149 C 15.155 19.590,14.102 20.168,13.311 20.501 L 13.000 20.633 13.000 12.195 L 13.000 3.758 13.420 4.040 C 13.650 4.195,14.066 4.448,14.343 4.603 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ShieldHalfIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ShieldHalf = ShieldHalfIcon;