30 lines
815 B
React
30 lines
815 B
React
|
|
import React from 'react';
|
||
|
|
import { Button, Typography } from '@douyinfe/semi-ui';
|
||
|
|
import { IconEyeOpened } from '@douyinfe/semi-icons';
|
||
|
|
|
||
|
|
const { Text } = Typography;
|
||
|
|
|
||
|
|
const TaskLogsActions = ({
|
||
|
|
compactMode,
|
||
|
|
setCompactMode,
|
||
|
|
t,
|
||
|
|
}) => {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col md:flex-row justify-between items-start md:items-center gap-2 w-full">
|
||
|
|
<div className="flex items-center text-orange-500 mb-2 md:mb-0">
|
||
|
|
<IconEyeOpened className="mr-2" />
|
||
|
|
<Text>{t('任务记录')}</Text>
|
||
|
|
</div>
|
||
|
|
<Button
|
||
|
|
type='tertiary'
|
||
|
|
className="w-full md:w-auto"
|
||
|
|
onClick={() => setCompactMode(!compactMode)}
|
||
|
|
size="small"
|
||
|
|
>
|
||
|
|
{compactMode ? t('自适应列表') : t('紧凑列表')}
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default TaskLogsActions;
|