import { Box, Typography } from "@mui/material"; interface Props { header: string; text: string; image: any; border?: string; } export default function CreationCard({ header, text, image, border }: Props) { return ( {header} {text} quiz creation ); }