mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Show move and resize cursors on hover (#280)
* Change to move cursor on hover * Show resize handlers on hover
This commit is contained in:
parent
a16cd3a34f
commit
4a044d3ace
4 changed files with 104 additions and 57 deletions
|
@ -7,6 +7,11 @@ export type SceneState = {
|
|||
viewBackgroundColor: string | null;
|
||||
};
|
||||
|
||||
export type SceneScroll = {
|
||||
scrollX: number;
|
||||
scrollY: number;
|
||||
};
|
||||
|
||||
export interface Scene {
|
||||
elements: ExcalidrawTextElement[];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue