import { Stack } from '@mui/material'; import Button from '@mui/material/Button'; import DownloadIcon from '@mui/icons-material/Download'; import ContentPasteIcon from '@mui/icons-material/ContentPaste'; import React from 'react'; export default function ResultFooter({ handleDownload, handleCopy, disabled, hideCopy }: { handleDownload: () => void; handleCopy: () => void; disabled?: boolean; hideCopy?: boolean; }) { return ( {!hideCopy && ( )} ); }