import { Button } from '@/components/ui/button' import { Separator } from '@/components/ui/separator' import { cn } from '@/lib/utils' import { Eye } from 'lucide-react' import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' import { FormattedTimestamp } from '../FormattedTimestamp' import UserAvatar from '../UserAvatar' import Username from '../Username' import RepostDescription from './RepostDescription' export default function MutedNoteCard({ event, show, reposter, embedded, className }: { event: Event show: () => void reposter?: string embedded?: boolean className?: string }) { const { t } = useTranslation() return (
{t('This user is muted')}
{!embedded && }
) }