Change tooltip position on 'Export File' button

Run prettier

:wq
This commit is contained in:
lluisemper 2024-06-05 21:30:13 +02:00
parent c8cf847681
commit f4740b6d68

View File

@ -14,7 +14,11 @@ class ExportButton extends Component<Props> {
render() {
return (
<Button title="Export to a file" onClick={this.props.exportState}>
<Button
title="Export to a file"
toolTipPosition="top-right"
onClick={this.props.exportState}
>
<TiDownload />
</Button>
);