mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-20 12:54:45 +08:00
15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
|
|
import { FileIcon } from "lucide-react";
|
||
|
|
|
||
|
|
export function ArtifactFileDetail({ filepath }: { filepath: string }) {
|
||
|
|
return (
|
||
|
|
<div className="flex size-full items-center justify-center">
|
||
|
|
<div className="flex items-center gap-2">
|
||
|
|
<div>
|
||
|
|
<FileIcon />
|
||
|
|
</div>
|
||
|
|
<div>{filepath}</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|