import { APP_VERSION } from 'routes/Settings' import { CustomIcon } from 'components/CustomIcon' import Tooltip from 'components/Tooltip' import { paths } from 'lib/paths' import { NetworkHealthIndicator } from 'components/NetworkHealthIndicator' import { HelpMenu } from './HelpMenu' import { Link, useLocation } from 'react-router-dom' import { useAbsoluteFilePath } from 'hooks/useAbsoluteFilePath' export function LowerRightControls(props: React.PropsWithChildren) { const location = useLocation() const filePath = useAbsoluteFilePath() const linkOverrideClassName = '!text-chalkboard-70 hover:!text-chalkboard-80 dark:!text-chalkboard-40 dark:hover:!text-chalkboard-30' return (
{props.children} v{APP_VERSION} Report a bug Settings
) }