import type { Post } from "../../../types/post"; import { AttachmentDownloadPill } from "../AttachmentDownloadPill"; import { BubbleImage } from "../BubbleImage"; import { useLightbox } from "../overlays/ImageLightbox"; export function ImageBubble({ post }: { post: Post }) { const { openLightbox } = useLightbox(); const att = post.attachments[0]; if (!att) return null; return (