import { Box, Typography, useMediaQuery, useTheme } from "@mui/material"; interface Props { bigText: string; text: string; flex: string; } export default function Infographics({ bigText, text, flex }: Props) { const theme = useTheme(); const upMd = useMediaQuery(theme.breakpoints.up("md")); return ( {bigText} {text} ); }