File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ import {
44 DeleteOutlined ,
55 EditOutlined ,
66 LinkOutlined ,
7- FolderOutlined ,
87 GlobalOutlined ,
98 CloudOutlined ,
109 PlusOutlined ,
11- DatabaseOutlined ,
1210 CloudServerOutlined ,
11+ HddOutlined ,
1312} from '@ant-design/icons' ;
13+ import { BsDatabase } from 'react-icons/bs' ;
1414
1515import Title from '@/components/Title' ;
1616import type { Oss } from '@/types/app/oss' ;
@@ -35,15 +35,15 @@ export default () => {
3535 const getPlatformIcon = ( platform : string ) => {
3636 switch ( platform . toLowerCase ( ) ) {
3737 case 'local' :
38- return < FolderOutlined className = "text-4xl text-yellow-500" /> ;
38+ return < BsDatabase className = "text-4xl text-yellow-500" /> ;
3939 case 'webdav' :
40- return < GlobalOutlined className = "text-4xl text-blue -500" /> ;
40+ return < GlobalOutlined className = "text-4xl text-red -500" /> ;
4141 case 'minio' :
42- return < DatabaseOutlined className = "text-4xl text-blue -600" /> ;
42+ return < HddOutlined className = "text-4xl text-red -600" /> ;
4343 case 'qiniu' :
4444 return < CloudServerOutlined className = "text-4xl text-blue-500" /> ;
4545 case 'tencent' :
46- return < CloudOutlined className = "text-4xl text-blue-400 " /> ;
46+ return < CloudOutlined className = "text-4xl text-blue-700 " /> ;
4747 case 'aliyun' :
4848 return < CloudOutlined className = "text-4xl text-orange-500" /> ;
4949 default :
You can’t perform that action at this time.
0 commit comments