import * as React from 'react'; import Card, { CardProps } from '@mui/joy/Card'; import Link from '@mui/joy/Link'; import Typography from '@mui/joy/Typography'; import AspectRatio from '@mui/joy/AspectRatio'; import FileUploadRoundedIcon from '@mui/icons-material/FileUploadRounded'; export default function DropZone( props: CardProps & { icon?: React.ReactElement }, ) { const { icon, sx, ...other } = props; return (
{icon ?? }
Click to upload {' '} or drag and drop
SVG, PNG, JPG or GIF (max. 800x400px)
); }