import { VERSIONS } from "../constants"; import { t } from "../i18n"; import { ExcalidrawProps, UIAppState } from "../types"; const LibraryMenuBrowseButton = ({ theme, id, libraryReturnUrl, }: { libraryReturnUrl: ExcalidrawProps["libraryReturnUrl"]; theme: UIAppState["theme"]; id: string; }) => { const referrer = libraryReturnUrl || window.location.origin + window.location.pathname; return ( {t("labels.libraries")} ); }; export default LibraryMenuBrowseButton;