From 6ec259a0e71174651bae95d4628138bf6fd68742 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 15 Mar 2026 16:19:35 -0400 Subject: refactor: packages/ --- .../components/LibraryMenuControlButtons.tsx | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/excalidraw/components/LibraryMenuControlButtons.tsx (limited to 'packages/excalidraw/components/LibraryMenuControlButtons.tsx') 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 ( +