mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +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;
|
|
}
|