UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.01 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-biceps-flexed" 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="M9.480 1.026 C 7.094 1.189,5.207 2.344,3.803 4.500 C 2.230 6.916,1.329 10.679,1.083 15.860 C 0.951 18.627,0.980 18.952,1.424 19.667 C 1.636 20.009,1.900 20.259,2.405 20.595 C 4.220 21.803,7.224 22.643,10.740 22.926 C 11.580 22.994,13.864 22.994,14.420 22.926 C 19.007 22.368,22.455 19.502,22.942 15.843 C 23.210 13.830,22.471 11.834,20.967 10.509 C 19.104 8.868,16.440 8.540,14.248 9.683 C 13.304 10.175,12.570 10.833,11.989 11.707 L 11.798 11.994 11.529 12.019 C 10.995 12.068,10.180 12.256,9.787 12.420 C 9.723 12.447,9.717 12.435,9.737 12.315 C 9.749 12.241,9.778 11.721,9.800 11.160 C 9.873 9.330,9.960 8.595,10.157 8.136 L 10.244 7.933 10.472 7.970 C 10.820 8.027,11.532 7.980,11.860 7.879 C 12.816 7.582,13.582 6.817,13.879 5.860 C 14.012 5.431,14.031 4.771,13.925 4.256 C 13.718 3.259,13.200 2.417,12.438 1.843 C 11.571 1.190,10.681 0.944,9.480 1.026 M10.523 3.073 C 11.261 3.266,11.850 3.924,11.967 4.688 C 12.050 5.232,11.886 5.636,11.486 5.871 C 11.318 5.969,11.263 5.980,10.920 5.979 C 10.394 5.978,10.177 5.877,9.867 5.489 C 9.618 5.176,9.392 5.039,9.078 5.009 C 8.658 4.969,8.202 5.262,8.066 5.659 C 7.935 6.044,7.993 6.321,8.285 6.707 L 8.486 6.972 8.365 7.236 C 8.014 8.002,7.884 8.844,7.801 10.900 C 7.728 12.671,7.633 13.443,7.424 13.959 C 7.373 14.084,7.219 14.353,7.083 14.555 C 6.798 14.979,6.508 15.540,6.440 15.796 C 6.388 15.993,6.411 16.181,6.517 16.420 C 6.613 16.636,6.777 16.792,7.035 16.911 C 7.211 16.992,7.291 17.007,7.478 16.990 C 7.925 16.949,8.154 16.757,8.458 16.168 C 9.458 14.233,11.826 13.455,13.768 14.425 C 13.915 14.499,14.173 14.648,14.340 14.757 C 14.667 14.971,14.882 15.029,15.172 14.983 C 15.762 14.888,16.145 14.236,15.943 13.670 C 15.856 13.427,15.708 13.269,15.339 13.023 C 14.988 12.789,14.149 12.361,14.042 12.360 C 13.961 12.360,14.283 12.037,14.601 11.800 C 15.949 10.796,17.779 10.742,19.211 11.664 C 19.569 11.893,20.079 12.409,20.340 12.803 C 20.816 13.523,21.042 14.380,20.985 15.254 C 20.902 16.520,20.396 17.571,19.383 18.582 C 18.093 19.869,16.462 20.616,14.260 20.929 C 13.788 20.996,11.663 20.994,10.840 20.926 C 7.863 20.680,5.331 20.026,3.805 19.110 C 3.263 18.784,3.085 18.624,3.040 18.423 C 2.991 18.203,3.055 16.259,3.164 14.680 C 3.433 10.747,4.210 7.635,5.402 5.714 C 6.516 3.916,8.014 3.027,9.960 3.008 C 10.125 3.006,10.378 3.036,10.523 3.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const BicepsFlexedIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const BicepsFlexed = BicepsFlexedIcon;