feat: support renderTopRightUI in mobile (#4065)

This commit is contained in:
Aakansha Doshi 2021-10-17 21:44:46 +05:30 committed by GitHub
parent ff29780760
commit c6ffc06541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 3 deletions

View file

@ -186,7 +186,10 @@ export interface ExcalidrawProps {
data: ClipboardData,
event: ClipboardEvent | null,
) => Promise<boolean> | boolean;
renderTopRightUI?: (isMobile: boolean, appState: AppState) => JSX.Element;
renderTopRightUI?: (
isMobile: boolean,
appState: AppState,
) => JSX.Element | null;
renderFooter?: (isMobile: boolean, appState: AppState) => JSX.Element;
langCode?: Language["code"];
viewModeEnabled?: boolean;