UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.52 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-case-upper" 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="M6.643 6.069 C 6.267 6.201,6.296 6.151,4.085 10.583 C 1.838 15.087,1.919 14.897,2.061 15.322 C 2.189 15.707,2.594 16.000,3.000 16.000 C 3.243 16.000,3.521 15.881,3.697 15.702 C 3.812 15.586,3.973 15.308,4.239 14.768 L 4.618 14.000 7.000 14.000 L 9.382 14.000 9.761 14.768 C 10.027 15.308,10.188 15.586,10.303 15.702 C 10.479 15.881,10.757 16.000,11.000 16.000 C 11.406 16.000,11.811 15.707,11.939 15.322 C 12.081 14.897,12.162 15.087,9.915 10.583 C 7.662 6.068,7.730 6.185,7.316 6.063 C 7.057 5.986,6.874 5.987,6.643 6.069 M14.695 6.056 C 14.465 6.129,14.255 6.300,14.128 6.516 L 14.020 6.700 14.009 10.913 C 14.002 13.672,14.013 15.178,14.039 15.277 C 14.099 15.498,14.290 15.739,14.508 15.867 L 14.700 15.980 17.240 15.991 C 19.989 16.004,20.116 15.996,20.641 15.783 C 21.501 15.433,22.212 14.599,22.424 13.689 C 22.506 13.340,22.506 12.660,22.424 12.311 C 22.307 11.807,22.049 11.337,21.671 10.935 L 21.478 10.730 21.636 10.435 C 21.906 9.930,21.979 9.624,21.979 9.000 C 21.979 8.547,21.964 8.412,21.886 8.160 C 21.582 7.182,20.829 6.425,19.861 6.122 L 19.540 6.022 17.200 6.013 C 15.351 6.005,14.825 6.014,14.695 6.056 M19.310 8.061 C 19.688 8.173,20.000 8.598,20.000 9.001 C 20.000 9.331,19.784 9.696,19.484 9.872 L 19.300 9.980 17.650 9.992 L 16.000 10.003 16.000 9.002 L 16.000 8.000 17.553 8.000 C 18.826 8.000,19.142 8.011,19.310 8.061 M7.690 10.620 C 8.059 11.357,8.360 11.969,8.360 11.980 C 8.360 11.991,7.748 12.000,7.000 12.000 C 6.252 12.000,5.640 11.991,5.640 11.980 C 5.640 11.940,6.980 9.280,7.000 9.280 C 7.011 9.280,7.322 9.883,7.690 10.620 M19.944 12.108 C 20.134 12.210,20.347 12.438,20.425 12.626 C 20.496 12.795,20.496 13.205,20.425 13.374 C 20.338 13.581,20.118 13.804,19.900 13.906 L 19.700 13.999 17.850 14.000 L 16.000 14.000 16.000 12.999 L 16.000 11.997 17.890 12.009 C 19.747 12.020,19.783 12.022,19.944 12.108 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CaseUpperIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CaseUpper = CaseUpperIcon;