1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Added PDF viewer options (#6800)

This commit is contained in:
asrient
2022-09-05 17:05:38 +05:30
committed by GitHub
parent eb7083d788
commit 1504cb71ae
16 changed files with 310 additions and 145 deletions

View File

@@ -0,0 +1,11 @@
export interface ScaledSize {
height: number;
width: number;
scale: number;
}
export interface IconButtonProps {
onClick: ()=> void;
size?: number;
color?: string;
}