@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
24 lines (21 loc) • 609 B
JavaScript
'use client';
import { useCdnFn } from "../../ConfigProvider/index.mjs";
import Img_default from "../../Img/index.mjs";
import { LOGO_3D } from "../LobeHub/style.mjs";
import { jsx } from "react/jsx-runtime";
//#region src/brand/Logo3d/index.tsx
const Logo3d = ({ size = "1em", style, alt = "LobeHub", ...rest }) => {
return /* @__PURE__ */ jsx(Img_default, {
alt,
height: size,
src: useCdnFn()(LOGO_3D),
style,
width: size,
...rest
});
};
Logo3d.displayName = "LobeHubLogo3d";
var Logo3d_default = Logo3d;
//#endregion
export { Logo3d_default as default };
//# sourceMappingURL=index.mjs.map