import { FileIcon } from "lucide-react"; import { cn } from "@/lib/utils"; export function ArtifactFileDetail({ className, filepath, }: { className?: string; filepath: string; }) { return (
{filepath}
); }