mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-22 07:56:48 +00: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>
|
|
);
|
|
}
|