@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.35 kB
JavaScript
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-omega" 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.460 3.024 C 8.764 3.226,6.404 4.486,4.848 6.554 C 3.904 7.808,3.377 9.048,3.094 10.680 C 2.984 11.316,2.994 12.765,3.113 13.420 C 3.505 15.580,4.447 17.293,6.035 18.733 L 6.330 19.000 4.611 19.000 C 2.745 19.000,2.661 19.008,2.382 19.221 C 2.302 19.282,2.187 19.415,2.128 19.516 C 2.037 19.672,2.020 19.746,2.020 20.000 C 2.020 20.257,2.036 20.327,2.133 20.492 C 2.261 20.710,2.502 20.901,2.725 20.961 C 2.823 20.988,3.755 20.998,5.369 20.991 L 7.860 20.980 8.104 20.867 C 8.413 20.724,8.721 20.415,8.868 20.100 C 8.972 19.877,8.980 19.824,8.980 19.360 C 8.980 18.883,8.974 18.848,8.856 18.600 C 8.711 18.298,8.536 18.108,8.189 17.874 C 7.096 17.138,6.315 16.268,5.770 15.178 C 4.965 13.569,4.792 11.854,5.262 10.129 C 5.624 8.801,6.421 7.549,7.454 6.685 C 8.934 5.447,10.696 4.879,12.569 5.035 C 13.526 5.115,14.329 5.337,15.115 5.739 C 16.529 6.463,17.566 7.499,18.238 8.860 C 18.800 9.999,19.041 11.106,18.986 12.300 C 18.938 13.350,18.716 14.183,18.220 15.180 C 17.673 16.278,16.990 17.043,15.818 17.869 C 15.407 18.158,15.273 18.308,15.112 18.660 C 15.032 18.835,15.020 18.923,15.020 19.360 C 15.020 19.824,15.028 19.877,15.132 20.100 C 15.279 20.415,15.587 20.724,15.896 20.867 L 16.140 20.980 18.631 20.991 C 20.245 20.998,21.177 20.988,21.275 20.961 C 21.498 20.901,21.739 20.710,21.867 20.492 C 21.964 20.327,21.980 20.257,21.980 20.000 C 21.980 19.746,21.963 19.672,21.872 19.516 C 21.813 19.415,21.698 19.282,21.618 19.221 C 21.339 19.008,21.255 19.000,19.390 19.000 L 17.672 19.000 17.986 18.712 C 19.592 17.240,20.555 15.455,20.906 13.300 C 21.006 12.685,21.006 11.315,20.906 10.700 C 20.252 6.687,17.194 3.647,13.261 3.100 C 12.843 3.042,11.806 2.998,11.460 3.024 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const OmegaIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Omega = OmegaIcon;