UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.99 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-sigma" 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.149 3.044 C 5.743 3.139,5.318 3.494,5.135 3.891 C 5.035 4.107,5.020 4.188,5.020 4.500 C 5.020 4.804,5.036 4.894,5.124 5.082 C 5.182 5.204,6.280 6.707,7.566 8.422 C 9.165 10.556,9.918 11.592,9.951 11.705 C 10.013 11.913,10.013 12.087,9.951 12.295 C 9.918 12.408,9.165 13.444,7.566 15.578 C 6.280 17.293,5.182 18.796,5.124 18.918 C 5.036 19.106,5.020 19.196,5.020 19.500 C 5.020 19.810,5.035 19.893,5.132 20.100 C 5.279 20.415,5.587 20.724,5.896 20.867 L 6.140 20.980 11.680 20.991 C 15.431 20.998,17.285 20.988,17.423 20.959 C 17.938 20.853,18.538 20.398,18.771 19.937 C 18.987 19.512,19.005 19.346,18.992 17.966 L 18.980 16.700 18.871 16.514 C 18.479 15.848,17.521 15.848,17.129 16.514 L 17.020 16.700 17.008 17.850 L 16.995 19.000 12.258 19.000 C 9.652 19.000,7.520 18.994,7.520 18.987 C 7.520 18.980,8.430 17.760,9.543 16.277 C 11.610 13.521,11.757 13.302,11.906 12.760 C 12.004 12.401,12.004 11.599,11.906 11.240 C 11.757 10.698,11.610 10.479,9.543 7.723 C 8.430 6.240,7.520 5.020,7.520 5.013 C 7.520 5.006,9.652 5.000,12.258 5.000 L 16.995 5.000 17.008 6.153 L 17.020 7.307 17.141 7.503 C 17.543 8.156,18.457 8.156,18.859 7.503 L 18.980 7.306 18.992 6.058 C 19.005 4.700,18.981 4.478,18.782 4.083 C 18.646 3.816,18.297 3.449,18.017 3.281 C 17.531 2.988,17.893 3.004,11.780 3.006 C 8.738 3.007,6.233 3.024,6.149 3.044 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SigmaIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Sigma = SigmaIcon;