UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.64 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-lower" 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.695 6.057 C 13.466 6.129,13.256 6.299,13.128 6.516 L 13.020 6.700 13.009 10.913 C 13.002 13.672,13.013 15.178,13.039 15.277 C 13.099 15.498,13.290 15.739,13.508 15.867 C 13.673 15.964,13.743 15.980,14.000 15.980 C 14.257 15.980,14.327 15.964,14.493 15.867 C 14.599 15.804,14.734 15.684,14.793 15.598 C 14.912 15.425,14.945 15.414,15.067 15.499 C 15.113 15.532,15.309 15.622,15.502 15.700 C 17.558 16.529,19.875 15.543,20.704 13.488 C 21.090 12.530,21.090 11.469,20.705 10.516 C 20.172 9.197,19.001 8.269,17.605 8.058 C 17.121 7.986,16.879 7.986,16.395 8.058 C 15.972 8.122,15.621 8.231,15.271 8.406 C 15.145 8.469,15.034 8.520,15.024 8.520 C 15.014 8.520,15.000 8.111,14.993 7.610 C 14.980 6.704,14.980 6.699,14.872 6.516 C 14.628 6.101,14.150 5.915,13.695 6.057 M6.358 8.061 C 5.230 8.237,4.143 8.974,3.569 9.953 C 2.320 12.083,3.233 14.785,5.512 15.704 C 6.475 16.092,7.529 16.091,8.498 15.700 C 8.691 15.622,8.887 15.532,8.933 15.499 C 9.055 15.414,9.088 15.425,9.207 15.598 C 9.266 15.684,9.401 15.804,9.507 15.867 C 9.673 15.964,9.743 15.980,10.000 15.980 C 10.257 15.980,10.327 15.964,10.492 15.867 C 10.710 15.739,10.901 15.498,10.961 15.276 C 10.988 15.177,10.998 14.005,10.991 11.912 L 10.980 8.700 10.872 8.516 C 10.696 8.216,10.331 8.000,10.001 8.000 C 9.693 8.000,9.269 8.243,9.130 8.498 C 9.089 8.574,9.074 8.571,8.734 8.411 C 8.263 8.191,8.058 8.127,7.602 8.058 C 7.144 7.989,6.816 7.990,6.358 8.061 M7.523 10.073 C 8.262 10.266,8.850 10.924,8.967 11.690 C 9.067 12.343,8.873 12.933,8.403 13.404 C 8.002 13.807,7.547 14.000,7.000 14.000 C 6.485 14.000,6.038 13.822,5.653 13.465 C 4.323 12.229,5.189 10.005,7.000 10.005 C 7.143 10.005,7.378 10.036,7.523 10.073 M17.523 10.073 C 18.262 10.266,18.850 10.924,18.967 11.690 C 19.067 12.343,18.873 12.933,18.403 13.404 C 18.002 13.807,17.547 14.000,17.000 14.000 C 16.485 14.000,16.038 13.822,15.653 13.465 C 14.323 12.229,15.189 10.005,17.000 10.005 C 17.143 10.005,17.378 10.036,17.523 10.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CaseLowerIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CaseLower = CaseLowerIcon;