// @mui import { useTheme } from '@mui/material/styles'; import IconButton from '@mui/material/IconButton'; // theme import { bgBlur } from 'src/theme/css'; // import Iconify from '../iconify'; // ---------------------------------------------------------------------- type Props = { onDownload?: VoidFunction; }; export default function DownloadButton({ onDownload }: Props) { const theme = useTheme(); return ( ); }