From 669f3a74da452b8e6b7a9ac96d0c5a5bc4b71b3b Mon Sep 17 00:00:00 2001 From: ZLY Date: Fri, 19 Sep 2025 15:35:55 +0800 Subject: [PATCH] =?UTF-8?q?feat(flowEditor):=20=E6=B7=BB=E5=8A=A0=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E6=A0=8F=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/flowEditor/components/actionBar.tsx | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/pages/flowEditor/components/actionBar.tsx 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