import { useQuizSettings } from "@contexts/QuizDataContext"; import { Button } from "@mui/material"; import { quizThemes } from "@utils/themes/Publication/themePublication"; interface Props { isNextButtonEnabled: boolean; moveToNextQuestion: () => void; } export default function NextButton({ isNextButtonEnabled, moveToNextQuestion }: Props) { const { settings } = useQuizSettings(); return ( ); }