diff options
Diffstat (limited to 'packages/excalidraw/components/LibraryMenuControlButtons.tsx')
| -rw-r--r-- | packages/excalidraw/components/LibraryMenuControlButtons.tsx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/excalidraw/components/LibraryMenuControlButtons.tsx b/packages/excalidraw/components/LibraryMenuControlButtons.tsx new file mode 100644 index 0000000..b467ca3 --- /dev/null +++ b/packages/excalidraw/components/LibraryMenuControlButtons.tsx @@ -0,0 +1,33 @@ +import type { ExcalidrawProps, UIAppState } from "../types"; +import LibraryMenuBrowseButton from "./LibraryMenuBrowseButton"; +import clsx from "clsx"; + +export const LibraryMenuControlButtons = ({ + libraryReturnUrl, + theme, + id, + style, + children, + className, +}: { + libraryReturnUrl: ExcalidrawProps["libraryReturnUrl"]; + theme: UIAppState["theme"]; + id: string; + style: React.CSSProperties; + children?: React.ReactNode; + className?: string; +}) => { + return ( + <div + className={clsx("library-menu-control-buttons", className)} + style={style} + > + <LibraryMenuBrowseButton + id={id} + libraryReturnUrl={libraryReturnUrl} + theme={theme} + /> + {children} + </div> + ); +}; |
