import { Button, useTheme } from "@mui/material"; import { useRootContainerSize } from "../../../contexts/RootContainerWidthContext"; import { quizThemes } from "@utils/themes/Publication/themePublication"; import { useQuizStore } from "@/stores/useQuizStore"; import { useTranslation } from "react-i18next"; interface Props { isPreviousButtonEnabled: boolean; moveToPrevQuestion: () => void; } export default function PrevButton({ isPreviousButtonEnabled, moveToPrevQuestion }: Props) { const theme = useTheme(); const { settings } = useQuizStore(); const isMobileMini = useRootContainerSize() < 382; const { t } = useTranslation(); return ( ); }