import { clsx } from 'clsx' import styles from './AutoSaveNotice.module.scss' import { Loading } from '../../_shared/Loading' import { useLocalize } from '../../../context/localize' type Props = { active: boolean } export const AutoSaveNotice = (props: Props) => { const { t } = useLocalize() return (