25 lines
723 B
React
25 lines
723 B
React
import React from 'react';
|
|
import { Typography } from '@douyinfe/semi-ui';
|
|
import { Key } from 'lucide-react';
|
|
import CompactModeToggle from '../../common/ui/CompactModeToggle';
|
|
|
|
const { Text } = Typography;
|
|
|
|
const TokensDescription = ({ 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-blue-500">
|
|
<Key size={16} className="mr-2" />
|
|
<Text>{t('令牌管理')}</Text>
|
|
</div>
|
|
|
|
<CompactModeToggle
|
|
compactMode={compactMode}
|
|
setCompactMode={setCompactMode}
|
|
t={t}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TokensDescription; |