|
@@ -1,6 +1,6 @@
|
|
|
import { Tooltip, Button, Space } from 'antd';
|
|
|
-import { ReloadOutlined, DeleteOutlined } from '@ant-design/icons';
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
+import Icon from '@/components/Icon';
|
|
|
|
|
|
const OutputActionPanel: React.FC = () => (
|
|
|
<Space>
|
|
@@ -14,7 +14,16 @@ const OutputActionPanel: React.FC = () => (
|
|
|
>
|
|
|
<Button
|
|
|
type="default"
|
|
|
- icon={<ReloadOutlined />}
|
|
|
+ icon={
|
|
|
+ <Icon
|
|
|
+ module="module-patient"
|
|
|
+ name="Export"
|
|
|
+ userId="base"
|
|
|
+ theme="default"
|
|
|
+ size="2x"
|
|
|
+ state="normal"
|
|
|
+ />
|
|
|
+ }
|
|
|
aria-label="重试"
|
|
|
style={{ width: '1.5rem', height: '1.5rem' }}
|
|
|
/>
|
|
@@ -29,7 +38,16 @@ const OutputActionPanel: React.FC = () => (
|
|
|
>
|
|
|
<Button
|
|
|
type="default"
|
|
|
- icon={<DeleteOutlined />}
|
|
|
+ icon={
|
|
|
+ <Icon
|
|
|
+ module="module-patient"
|
|
|
+ name="Delete"
|
|
|
+ userId="base"
|
|
|
+ theme="default"
|
|
|
+ size="2x"
|
|
|
+ state="normal"
|
|
|
+ />
|
|
|
+ }
|
|
|
aria-label="删除"
|
|
|
style={{ width: '1.5rem', height: '1.5rem' }}
|
|
|
/>
|