feat: integrated with artifacts

This commit is contained in:
Henry Li
2026-01-17 00:02:03 +08:00
parent 34ca58ed1b
commit 9d64c7e076
6 changed files with 174 additions and 39 deletions

View File

@@ -0,0 +1,14 @@
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>
);
}