import { Box, Fade, Typography, useTheme, useMediaQuery } from "@mui/material"; import type { FC } from "react"; interface Iprops { header: string; image: string; text: string; } export const QuizCard: FC = ({ header, image, text }) => { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down(600)); const isTablet = useMediaQuery(theme.breakpoints.down(1113)); return ( {header} {text} ); };