import ManimCatLogo from '../../../components/ManimCatLogo' import { useI18n } from '../../../i18n' interface PlotStudioShellHeaderProps { directory: string | null | undefined onExitClick: () => void } export function PlotStudioShellHeader({ directory, onExitClick }: PlotStudioShellHeaderProps) { const { t } = useI18n() return (
MANIMCAT {directory ?? 'workspace'}
) }