examples/attachment-compact.tsx
1import { Attachment } from "@/components/wensity/attachment";23export function AttachmentCompact() {4 return (5 <div className="flex flex-col gap-2">6 <Attachment variant="compact" fileName="invoice-2024-q4.pdf" fileSize={182_000} />7 <Attachment variant="compact" fileName="brand-assets.zip" fileSize={8_400_000} />8 <Attachment variant="compact" fileName="notes.txt" fileSize={4_200} />9 </div>10 );11}