mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-15 12:10:16 +00:00
💄 style: update branding (#7224)
This commit is contained in:
@@ -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} />;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user