mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-27 10:32:58 +02:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
|
export interface ScaledSize {
|
||
|
height: number;
|
||
|
width: number;
|
||
|
scale: number;
|
||
|
}
|
||
|
|
||
|
export interface IconButtonProps {
|
||
|
onClick: ()=> void;
|
||
|
size?: number;
|
||
|
color?: string;
|
||
|
}
|