UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.47 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-settings-2" 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.358 3.061 C 5.230 3.237,4.143 3.974,3.569 4.953 C 2.320 7.083,3.233 9.785,5.512 10.704 C 6.471 11.090,7.529 11.090,8.488 10.704 C 9.522 10.287,10.323 9.478,10.711 8.460 C 10.778 8.284,10.843 8.109,10.855 8.070 C 10.876 8.004,11.135 8.000,15.529 7.998 C 19.310 7.997,20.208 7.986,20.330 7.943 C 20.551 7.864,20.744 7.702,20.869 7.489 C 20.964 7.328,20.980 7.256,20.980 7.000 C 20.980 6.746,20.963 6.672,20.872 6.516 C 20.813 6.415,20.698 6.282,20.618 6.221 C 20.318 5.992,20.502 6.000,15.492 6.000 C 11.132 6.000,10.876 5.996,10.855 5.930 C 10.843 5.891,10.778 5.716,10.711 5.540 C 10.213 4.232,9.008 3.270,7.605 3.058 C 7.144 2.989,6.816 2.990,6.358 3.061 M7.523 5.073 C 8.262 5.266,8.850 5.924,8.967 6.690 C 9.067 7.343,8.873 7.933,8.403 8.404 C 8.002 8.807,7.547 9.000,7.000 9.000 C 6.485 9.000,6.038 8.822,5.653 8.465 C 4.323 7.229,5.189 5.005,7.000 5.005 C 7.143 5.005,7.378 5.036,7.523 5.073 M16.358 13.061 C 14.851 13.296,13.597 14.415,13.143 15.930 C 13.124 15.996,12.892 16.000,9.008 16.000 C 4.541 16.000,4.681 15.993,4.382 16.221 C 4.302 16.282,4.187 16.415,4.128 16.516 C 4.037 16.672,4.020 16.746,4.020 17.000 C 4.020 17.256,4.036 17.328,4.131 17.489 C 4.256 17.702,4.449 17.864,4.670 17.943 C 4.792 17.986,5.608 17.997,8.971 17.998 C 12.889 18.000,13.124 18.004,13.143 18.070 C 13.510 19.292,14.362 20.240,15.512 20.704 C 17.558 21.528,19.877 20.538,20.704 18.488 C 21.090 17.530,21.090 16.469,20.705 15.516 C 20.172 14.197,19.001 13.269,17.605 13.058 C 17.144 12.989,16.816 12.990,16.358 13.061 M17.523 15.073 C 18.262 15.266,18.850 15.924,18.967 16.690 C 19.067 17.343,18.873 17.933,18.403 18.404 C 18.002 18.807,17.547 19.000,17.000 19.000 C 16.485 19.000,16.038 18.822,15.653 18.465 C 14.323 17.229,15.189 15.005,17.000 15.005 C 17.143 15.005,17.378 15.036,17.523 15.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const Settings2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Settings2 = Settings2Icon;