import { AlertTriangle } from 'lucide-react'; import { useTranslation } from 'react-i18next'; type Props = { className?: string; }; export default function GeneralNotice({ className }: Props) { const { t } = useTranslation('common'); return (