import { IlNotesIcon } from '@standardnotes/icons' import { observer } from 'mobx-react-lite' import Button from '../Button/Button' import { useCallback } from 'react' import FileOptionsPanel from '../FileContextMenu/FileOptionsPanel' import { FilesController } from '@/Controllers/FilesController' import { SelectedItemsController } from '@/Controllers/SelectedItemsController' type Props = { filesController: FilesController selectionController: SelectedItemsController } const MultipleSelectedFiles = ({ filesController, selectionController }: Props) => { const count = selectionController.selectedFilesCount const cancelMultipleSelection = useCallback(() => { selectionController.cancelMultipleSelection() }, [selectionController]) return (
Actions will be performed on all selected files.