import { getEmojiPackInfoFromEvent } from '@/lib/event-metadata' import { cn } from '@/lib/utils' import { Event } from 'nostr-tools' import { useMemo } from 'react' import { useTranslation } from 'react-i18next' export default function EmojiPackPreview({ event, className }: { event: Event className?: string }) { const { t } = useTranslation() const { title, emojis } = useMemo(() => getEmojiPackInfoFromEvent(event), [event]) return (