UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.29 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-a-large-small" 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="M7.240 6.035 C 7.043 6.100,6.890 6.198,6.764 6.342 C 6.690 6.426,5.666 8.427,4.333 11.095 C 1.815 16.132,1.918 15.894,2.061 16.322 C 2.189 16.707,2.594 17.000,3.000 17.000 C 3.080 17.000,3.232 16.971,3.336 16.935 C 3.689 16.815,3.776 16.690,4.475 15.290 L 5.120 14.000 7.500 14.000 L 9.880 14.000 10.525 15.290 C 11.224 16.690,11.311 16.815,11.664 16.935 C 11.768 16.971,11.920 17.000,12.000 17.000 C 12.406 17.000,12.811 16.707,12.939 16.322 C 13.081 15.894,13.184 16.131,10.675 11.103 C 9.213 8.173,8.330 6.448,8.243 6.349 C 8.167 6.264,8.034 6.158,7.946 6.113 C 7.771 6.024,7.399 5.983,7.240 6.035 M17.873 9.060 C 17.136 9.200,16.468 9.565,15.958 10.105 C 15.561 10.525,15.318 10.950,15.131 11.548 L 15.021 11.900 15.021 14.103 L 15.020 16.306 15.141 16.503 C 15.543 17.156,16.457 17.156,16.859 16.503 C 16.979 16.308,16.980 16.300,16.993 15.653 L 17.007 15.000 18.500 15.000 L 19.993 15.000 20.007 15.653 C 20.020 16.300,20.021 16.308,20.141 16.503 C 20.543 17.156,21.457 17.156,21.859 16.503 L 21.980 16.306 21.991 14.283 C 21.999 13.023,21.987 12.159,21.961 11.992 C 21.747 10.608,20.722 9.468,19.378 9.118 C 18.959 9.009,18.280 8.983,17.873 9.060 M8.200 10.640 L 8.880 12.000 7.500 12.000 L 6.120 12.000 6.800 10.640 C 7.174 9.892,7.489 9.280,7.500 9.280 C 7.511 9.280,7.826 9.892,8.200 10.640 M19.119 11.143 C 19.417 11.279,19.728 11.592,19.862 11.892 C 19.951 12.090,19.974 12.210,19.991 12.566 L 20.011 13.000 18.500 13.000 L 16.989 13.000 17.009 12.565 C 17.026 12.206,17.049 12.088,17.137 11.895 C 17.326 11.479,17.751 11.129,18.174 11.039 C 18.441 10.982,18.870 11.030,19.119 11.143 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ALargeSmallIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ALargeSmall = ALargeSmallIcon;