import { LibraryItem, ExcalidrawProps, AppState } from "../types"; import LibraryMenuBrowseButton from "./LibraryMenuBrowseButton"; import { LibraryDropdownMenu } from "./LibraryMenuHeaderContent"; export const LibraryMenuControlButtons = ({ selectedItems, onSelectItems, libraryReturnUrl, theme, id, style, }: { selectedItems: LibraryItem["id"][]; onSelectItems: (id: LibraryItem["id"][]) => void; libraryReturnUrl: ExcalidrawProps["libraryReturnUrl"]; theme: AppState["theme"]; id: string; style: React.CSSProperties; }) => { return (
); };