Exec script dialog

This commit is contained in:
Alexander Zobnin
2020-05-27 12:19:32 +03:00
parent fd775aa9d7
commit 092acec295
6 changed files with 283 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import React, { FC } from 'react';
import { ActionButton } from '../ActionButton/ActionButton';
interface Props {
className?: string;
onClick(): void;
}
export const ExecScriptButton: FC<Props> = ({ className, onClick }) => {
return (
<ActionButton className={className} icon="terminal" tooltip="Execute script" onClick={onClick} />
);
};