diff --git a/src/pages/flowEditor/components/actionBar.tsx b/src/pages/flowEditor/components/actionBar.tsx new file mode 100644 index 0000000..a1b7a9c --- /dev/null +++ b/src/pages/flowEditor/components/actionBar.tsx @@ -0,0 +1,37 @@ +import React from 'react'; +import { Button } from '@arco-design/web-react'; +import { IconSave, IconPlayArrow, IconCodeSquare } from '@arco-design/web-react/icon'; + +const ButtonGroup = Button.Group; + +interface ActionBarProps { + onSave: () => void; +} + +const ActionBar: React.FC = ({ onSave }) => { + return ( +
+ + + + + +
+ ); +}; + +export default ActionBar; \ No newline at end of file