UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

22 lines (21 loc) 584 B
"use client"; import { useCdnFn } from "../../ConfigProvider/index.mjs"; import Img 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 }) => { const genCdnUrl = useCdnFn(); return /* @__PURE__ */ jsx(Img, { alt, height: size, src: genCdnUrl(LOGO_3D), style, width: size, ...rest }); }; Logo3d.displayName = "LobeHubLogo3d"; //#endregion export { Logo3d as default }; //# sourceMappingURL=index.mjs.map