Merge branch 'exec-script' into backend

This commit is contained in:
Alexander Zobnin
2020-06-02 12:29:08 +03:00
9 changed files with 337 additions and 5 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} />
);
};

View File

@@ -2,5 +2,6 @@ export { GFHeartIcon } from './GFHeartIcon/GFHeartIcon';
export { FAIcon } from './FAIcon/FAIcon';
export { AckButton } from './AckButton/AckButton';
export { ExploreButton } from './ExploreButton/ExploreButton';
export { ExecScriptButton } from './ExecScriptButton/ExecScriptButton';
export { Tooltip } from './Tooltip/Tooltip';
export { ModalController } from './Modal/ModalController';