import React from 'react'; import { Button, Tooltip } from '@mui/material'; import DownloadIcon from '@mui/icons-material/Download'; interface DownloadJsonButtonProps { onClick: () => void; disabled?: boolean; } /** * Button to download trace as JSON */ export const DownloadJsonButton: React.FC = ({ onClick, disabled = false, }) => { return ( ); };