import { Box, Typography, useTheme } from "@mui/material"; interface Props { image: string; text: string; border?: string; } export default function CardWithImage({ image, text, border }: Props) { const theme = useTheme(); return ( card {text} ); }