import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { FunctionComponent } from 'react' const DownloadBtn: FunctionComponent<{ downloadUrl: string }> = ({ downloadUrl }) => { return (
Download
) } export default DownloadBtn