UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.68 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-section" 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="M11.420 1.025 C 8.850 1.300,7.000 2.980,7.000 5.037 C 7.000 6.370,7.760 7.532,9.168 8.350 L 9.481 8.531 9.134 8.726 C 7.779 9.485,7.000 10.696,7.000 12.044 C 7.000 13.518,7.897 14.726,9.642 15.601 C 10.072 15.817,10.459 15.975,12.320 16.699 C 13.875 17.304,14.585 17.775,14.872 18.390 C 14.963 18.585,14.979 18.674,14.979 18.980 C 14.980 19.297,14.966 19.368,14.863 19.580 C 14.714 19.885,14.309 20.293,13.940 20.511 C 13.598 20.712,13.047 20.900,12.627 20.957 C 11.398 21.125,10.231 20.797,9.517 20.083 C 9.179 19.745,9.054 19.488,9.002 19.026 C 8.956 18.609,8.848 18.391,8.595 18.205 C 7.967 17.744,7.081 18.144,7.011 18.920 C 6.971 19.353,7.124 20.014,7.380 20.520 C 7.867 21.483,8.822 22.262,10.020 22.672 C 10.723 22.912,11.134 22.976,12.000 22.976 C 12.873 22.976,13.253 22.916,13.988 22.666 C 16.034 21.968,17.250 20.238,16.957 18.443 C 16.772 17.310,16.097 16.413,14.888 15.690 L 14.517 15.468 14.808 15.310 C 16.838 14.210,17.573 12.047,16.529 10.247 C 16.024 9.378,15.139 8.708,13.680 8.089 C 13.471 8.000,12.841 7.753,12.280 7.539 C 10.207 6.750,9.441 6.282,9.128 5.610 C 9.037 5.415,9.021 5.326,9.021 5.020 C 9.020 4.703,9.034 4.632,9.137 4.420 C 9.429 3.822,10.215 3.288,11.095 3.089 C 11.486 3.001,12.514 3.001,12.905 3.089 C 13.537 3.232,14.085 3.519,14.483 3.917 C 14.822 4.256,14.946 4.511,14.998 4.978 C 15.046 5.410,15.167 5.636,15.452 5.828 C 16.077 6.247,16.921 5.839,16.989 5.084 C 17.029 4.647,16.877 3.988,16.620 3.480 C 16.217 2.683,15.514 2.027,14.583 1.581 C 13.822 1.216,13.072 1.043,12.160 1.021 C 11.841 1.014,11.508 1.015,11.420 1.025 M12.926 10.096 C 13.777 10.282,14.574 10.827,14.863 11.420 C 14.964 11.628,14.980 11.705,14.980 12.000 C 14.980 12.295,14.964 12.372,14.863 12.580 C 14.714 12.885,14.309 13.293,13.940 13.511 C 12.840 14.159,11.160 14.159,10.060 13.511 C 9.691 13.293,9.286 12.885,9.137 12.580 C 9.036 12.372,9.020 12.295,9.020 12.000 C 9.020 11.709,9.036 11.627,9.132 11.432 C 9.466 10.752,10.306 10.218,11.299 10.055 C 11.689 9.991,12.546 10.012,12.926 10.096 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SectionIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Section = SectionIcon;