import { QuoteIcon } from "@lume/icons"; import type { Event } from "@lume/types"; import { Note } from "@/components/note"; import { cn } from "@lume/utils"; export function Quote({ event, className, }: { event: Event; className?: string; }) { const quoteEventId = event.tags.find( (tag) => tag[0] === "q" || tag[3] === "mention", )?.[1]; return (
Quote
); }