"use client" import { File, Image as ImageIcon } from "lucide-react" import type { EmailAttachment } from "@/lib/email-data" export function ListAttachmentChip({ att }: { att: EmailAttachment }) { return ( {att.kind === "pdf" ? ( ) : att.kind === "image" ? ( ) : ( )} {att.name} ) }