mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 11:00:47 +02:00
# Description of Changes - ~Force classic logo~ - Refer to email instead of username in SaaS sign in flow - Allow drag-and-drop files into desktop app - Convert terminology & icons from upload/download to open/save in desktop version
16 lines
423 B
TypeScript
16 lines
423 B
TypeScript
import UploadIcon from '@mui/icons-material/Upload';
|
|
import DownloadOutlinedIcon from '@mui/icons-material/DownloadOutlined';
|
|
|
|
/**
|
|
* File action icons for web builds
|
|
* Desktop builds override this with different icons
|
|
*/
|
|
export function useFileActionIcons() {
|
|
return {
|
|
upload: UploadIcon,
|
|
download: DownloadOutlinedIcon,
|
|
uploadIconName: 'upload' as const,
|
|
downloadIconName: 'download' as const,
|
|
};
|
|
}
|