| | |
| | | import { LoadingIndicator, LocalesMenuButton } from 'react-admin'; |
| | | import { ThemeSwapper } from '../themes/ThemeSwapper'; |
| | | import { TenantTip } from './TenantTip'; |
| | | import { AiChatWidget } from '@/ai/AiChatWidget'; |
| | | |
| | | export const AppBarToolbar = () => ( |
| | | <> |
| | | <LocalesMenuButton /> |
| | | <ThemeSwapper /> |
| | | <LoadingIndicator /> |
| | | <AiChatWidget |
| | | trigger="button" |
| | | buttonText="AI 对话" |
| | | buttonVariant="text" |
| | | buttonSx={{ |
| | | minWidth: 'auto', |
| | | px: 1.25, |
| | | color: '#fff', |
| | | borderRadius: 2, |
| | | whiteSpace: 'nowrap', |
| | | '&:hover': { |
| | | backgroundColor: 'rgba(255,255,255,0.12)' |
| | | } |
| | | }} |
| | | /> |
| | | <TenantTip /> |
| | | </> |
| | | ); |