import React from 'react'; import { useTranslation } from 'react-i18next'; import { DialogTitle, DialogActions, Button, Dialog, DialogContent, makeStyles, Theme, Box, Grid } from '@material-ui/core'; import { RemoveCircle } from '@material-ui/icons'; interface IOwnProps { open: boolean; setOpen: (boolean) => void; } export const BundleBought = (props: IOwnProps) => { const { open, setOpen } = props; const { t } = useTranslation(); const iconStyles = makeStyles((theme: Theme) => ({ large: { fontSize: theme.spacing(10) } }))(); return ( setOpen(false)}> {t('bundle.info.bundleBought')} {' '} ); };