💄 style: update branding (#7224)

This commit is contained in:
Arvin Xu
2025-03-31 19:39:37 +08:00
committed by GitHub
parent 7ae17b62d3
commit 481cab0515
@@ -1,14 +1,14 @@
import { LobeChat, LobeChatProps } from '@lobehub/ui/brand';
import { LobeHub, LobeHubProps } from '@lobehub/ui/brand';
import { memo } from 'react';
import { isCustomBranding } from '@/const/version';
import CustomLogo from './Custom';
export const ProductLogo = memo<LobeChatProps>((props) => {
export const ProductLogo = memo<LobeHubProps>((props) => {
if (isCustomBranding) {
return <CustomLogo {...props} />;
}
return <LobeChat {...props} />;
return <LobeHub {...props} />;
});