import { useQuizStore } from "@/stores/useQuizStore"; 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 } = useQuizStore(); return ( ); }