updata:icon替换

This commit is contained in:
xiaozhu
2026-08-27 15:43:29 +08:00
parent 433c68998e
commit 80faf15359
17 changed files with 159 additions and 304 deletions
@@ -1,5 +1,5 @@
import { type FormEvent } from "react";
import Icon from "../../components/common/Icon";
import { Folder } from "lucide-react";
import {
AppFormDialog,
dialogPrimaryButtonClass,
@@ -43,7 +43,7 @@ export function CreateFolderModal({
>
<form className={modalFormClass} onSubmit={onSubmit}>
<div className={destinationChipClass}>
<Icon name="folder" size={16} />
<Folder size={16} />
{parentPath || "个人根目录"}
</div>
<label className={formFieldClass}>
@@ -76,7 +76,7 @@ export function CreateFolderModal({
>
{busy
? <span className="button-spinner" />
: <Icon name="folder" size={16} />}
: <Folder size={16} />}
{busy ? "正在创建…" : "创建文件夹"}
</Button>
</div>