import { IconButton, styled, Tooltip, Typography } from '@mui/material'; import { ReactComponent as AIIcon } from 'assets/icons/AI.svg'; import EditNoteIcon from '@mui/icons-material/EditNote'; import CloseIcon from '@mui/icons-material/Close'; const StyledHeader = styled('div')(({ theme }) => ({ background: theme.mode === 'light' ? theme.palette.primary.main : theme.palette.primary.light, color: theme.palette.primary.contrastText, display: 'flex', alignItems: 'center', justifyContent: 'space-between', padding: theme.spacing(0.5), })); const StyledTitleContainer = styled('div')(({ theme }) => ({ display: 'flex', alignItems: 'center', gap: theme.spacing(1), marginLeft: theme.spacing(1), })); const StyledTitle = styled(Typography)({ fontWeight: 'bold', }); const StyledActionsContainer = styled('div')({ display: 'flex', alignItems: 'center', }); const StyledIconButton = styled(IconButton)(({ theme }) => ({ color: theme.palette.primary.contrastText, })); interface IAIChatHeaderProps { onNew: () => void; onClose: () => void; } export const AIChatHeader = ({ onNew, onClose }: IAIChatHeaderProps) => { return ( Unleash AI ); };