frontAnswerer/lib/components/ViewPublicationPage/tools/NextButton.tsx
2024-05-31 19:41:18 +03:00

30 lines
793 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Button, useTheme } from "@mui/material";
import { quizThemes } from "@utils/themes/Publication/themePublication";
import { useQuizData } from "@contexts/QuizDataContext";
interface Props {
isNextButtonEnabled: boolean;
moveToNextQuestion: () => void;
}
export default function NextButton({ isNextButtonEnabled, moveToNextQuestion }: Props) {
const theme = useTheme();
const { settings } = useQuizData();
return (
<Button
disabled={!isNextButtonEnabled}
variant="contained"
sx={{
fontSize: "16px",
padding: "10px 15px",
"&:disabled": {
background: quizThemes[settings.cfg.theme].isLight ? "#F2F3F7" : "#FFFFFF26",
},
}}
onClick={moveToNextQuestion}
>
Далее
</Button>
);
}