type FileSelectionControlsProps = { isMobile: boolean; selectedCount: number; totalCount: number; isHidden: boolean; onSelectAll: () => void; onDeselectAll: () => void; }; export default function FileSelectionControls({ isMobile, selectedCount, totalCount, isHidden, onSelectAll, onDeselectAll, }: FileSelectionControlsProps) { return (
{selectedCount} of {totalCount} {isMobile ? '' : 'files'} selected |
); }