UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.4 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-sensitive" 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 M17.358 8.061 C 16.230 8.237,15.143 8.974,14.569 9.953 C 13.320 12.083,14.233 14.785,16.512 15.704 C 17.475 16.092,18.529 16.091,19.498 15.700 C 19.691 15.622,19.887 15.532,19.933 15.499 C 20.055 15.414,20.088 15.425,20.207 15.598 C 20.266 15.684,20.401 15.804,20.507 15.867 C 20.673 15.964,20.743 15.980,21.000 15.980 C 21.257 15.980,21.327 15.964,21.492 15.867 C 21.710 15.739,21.901 15.498,21.961 15.276 C 21.988 15.177,21.998 14.005,21.991 11.912 L 21.980 8.700 21.872 8.516 C 21.696 8.216,21.331 8.000,21.001 8.000 C 20.693 8.000,20.269 8.243,20.130 8.498 C 20.089 8.574,20.074 8.571,19.734 8.411 C 19.263 8.191,19.058 8.127,18.602 8.058 C 18.144 7.989,17.816 7.990,17.358 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 M18.523 10.073 C 19.262 10.266,19.850 10.924,19.967 11.690 C 20.067 12.343,19.873 12.933,19.403 13.404 C 19.002 13.807,18.547 14.000,18.000 14.000 C 17.485 14.000,17.038 13.822,16.653 13.465 C 15.323 12.229,16.189 10.005,18.000 10.005 C 18.143 10.005,18.378 10.036,18.523 10.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CaseSensitiveIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CaseSensitive = CaseSensitiveIcon;