import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import { cn } from "#/utils/utils"; import { ExplorerActions } from "./file-explorer-actions"; interface FileExplorerHeaderProps { isOpen: boolean; onToggle: () => void; onRefreshWorkspace: () => void; } export function FileExplorerHeader({ isOpen, onToggle, onRefreshWorkspace, }: FileExplorerHeaderProps) { const { t } = useTranslation(); return (
{isOpen && (
{t(I18nKey.EXPLORER$LABEL_WORKSPACE)}
)}
); }