import BlueButton from "../buttons/BlueButton.tsx"; import React from "react"; type props = { dataSend: React.MouseEventHandler; handleDownload: React.MouseEventHandler; downloadable: boolean; progress: number } const ExportWidget = ({dataSend, handleDownload, downloadable, progress}: props) => { return (
Export { downloadable ? ( Download ) :( ) }
) } export default ExportWidget;