'use client'; import { AlertCircle } from 'lucide-react'; import { useTranslations } from 'next-intl'; export function LabShipmentBlockedNotice() { const t = useTranslations('treatment'); return (

{t('labShipmentBlockedTitle')}

{t('labShipmentBlockedBody')}

); }