import { useTranslation } from 'react-i18next' import MaterialIcon from '@/shared/components/material-icon' import { useIsNewEditorEnabled } from '@/features/ide-redesign/utils/new-editor-utils' function FileTreeFolderIcons({ expanded, onExpandCollapseClick, }: { expanded: boolean onExpandCollapseClick: () => void }) { const { t } = useTranslation() const newEditor = useIsNewEditorEnabled() if (newEditor) { return ( <> ) } return ( <> ) } export default FileTreeFolderIcons