import clsx from "clsx"; import { actionShortcuts } from "../../actions"; import { ActionManager } from "../../actions/manager"; import { AppState, UIChildrenComponents, UIWelcomeScreenComponents, } from "../../types"; import { ExitZenModeAction, FinalizeAction, UndoRedoActions, ZoomActions, } from "../Actions"; import { useDevice } from "../App"; import { HelpButton } from "../HelpButton"; import { Section } from "../Section"; import Stack from "../Stack"; const Footer = ({ appState, actionManager, showExitZenModeBtn, footerCenter, welcomeScreenHelp, }: { appState: AppState; actionManager: ActionManager; showExitZenModeBtn: boolean; footerCenter: UIChildrenComponents["FooterCenter"]; welcomeScreenHelp: UIWelcomeScreenComponents["HelpHint"]; }) => { const device = useDevice(); const showFinalize = !appState.viewModeEnabled && appState.multiElement && device.isTouchScreen; return ( ); }; export default Footer; Footer.displayName = "Footer";