File size: 1,390 Bytes
7fcdb70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
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<DownloadJsonButtonProps> = ({
onClick,
disabled = false,
}) => {
return (
<Tooltip
title={
disabled
? "No trace available"
: "Download trace as JSON"
}
>
<span>
<Button
variant="outlined"
size="small"
onClick={onClick}
disabled={disabled}
startIcon={<DownloadIcon sx={{ fontSize: '1.2rem' }} />}
sx={{
textTransform: 'none',
fontSize: '0.75rem',
fontWeight: 600,
borderRadius: 1,
px: 1.5,
py: 0.5,
borderColor: 'divider',
color: 'text.primary',
'&:hover': {
borderColor: 'primary.main',
backgroundColor: 'action.hover',
},
'&.Mui-disabled': {
borderColor: 'divider',
color: 'text.disabled',
},
}}
>
Download JSON Trace
</Button>
</span>
</Tooltip>
);
};
|