mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-13 02:18:16 +01: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
474 B
TypeScript
16 lines
474 B
TypeScript
import FolderOpenOutlinedIcon from '@mui/icons-material/FolderOpenOutlined';
|
|
import SaveOutlinedIcon from '@mui/icons-material/SaveOutlined';
|
|
|
|
/**
|
|
* File action icons for desktop builds
|
|
* Overrides core implementation with desktop-appropriate icons
|
|
*/
|
|
export function useFileActionIcons() {
|
|
return {
|
|
upload: FolderOpenOutlinedIcon,
|
|
download: SaveOutlinedIcon,
|
|
uploadIconName: 'folder-rounded' as const,
|
|
downloadIconName: 'save-rounded' as const,
|
|
};
|
|
}
|