2021-12-19 19:19:46 +08:00
|
|
|
|
import {
|
|
|
|
|
Close as CloseIcon,
|
|
|
|
|
Remove as RemoveIcon,
|
|
|
|
|
Resize as ResizeIcon,
|
|
|
|
|
EllipsisHorizontalSharp as EllipsisHorizontalCircleSharpIcon,
|
|
|
|
|
CopyOutline as CopyIcon,
|
|
|
|
|
Trash as TrashIcon,
|
|
|
|
|
Pencil as PencilIcon,
|
2021-12-20 13:36:54 +08:00
|
|
|
|
HammerOutline as HammerIcon,
|
2021-12-19 19:19:46 +08:00
|
|
|
|
ApertureSharp as ApertureSharpIcon,
|
|
|
|
|
DownloadOutline as DownloadIcon,
|
2021-12-20 13:36:54 +08:00
|
|
|
|
Open as OpenIcon,
|
|
|
|
|
Send as SendIcon
|
2021-12-19 19:19:46 +08:00
|
|
|
|
} from '@vicons/ionicons5'
|
|
|
|
|
|
|
|
|
|
// ionicons5 在这里
|
|
|
|
|
const ionicons5 = {
|
|
|
|
|
// 关闭
|
|
|
|
|
CloseIcon,
|
|
|
|
|
// 移除(最小化)
|
|
|
|
|
RemoveIcon,
|
|
|
|
|
// 调整(最大化)
|
|
|
|
|
ResizeIcon,
|
|
|
|
|
// 省略号
|
|
|
|
|
EllipsisHorizontalCircleSharpIcon,
|
|
|
|
|
// 复制
|
|
|
|
|
CopyIcon,
|
|
|
|
|
// 删除(垃圾桶)
|
|
|
|
|
TrashIcon,
|
|
|
|
|
// 编辑1(笔)
|
|
|
|
|
PencilIcon,
|
|
|
|
|
// 编辑2(锤子)
|
|
|
|
|
HammerIcon,
|
|
|
|
|
// 预览
|
|
|
|
|
ApertureSharpIcon,
|
|
|
|
|
// 下载
|
|
|
|
|
DownloadIcon,
|
|
|
|
|
// 导出
|
2021-12-20 13:36:54 +08:00
|
|
|
|
OpenIcon,
|
|
|
|
|
// 导出
|
|
|
|
|
SendIcon,
|
2021-12-19 19:19:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://www.xicons.org/#/ 还有很多
|
|
|
|
|
|
|
|
|
|
export const icon = {
|
|
|
|
|
ionicons5
|
|
|
|
|
}
|