/
alt3rmann
/
LibreChat
Обзор
Документация
Войти
/
alt3rmann
/
LibreChat
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
client/src/components/Auth/ErrorMessage.tsx
9 строк
324 B
Marco Beretta
🎨 refactor: Auth Components UI Consistency (#7651)
02 июн 2025, 14:49
Не верифицирован
02 июн 2025, 14:49
37c94be
Код
Авторство
О чём код?
export const ErrorMessage = ({ children }: { children: React.ReactNode }) => ( <div role="alert" aria-live="assertive" className="relative mt-6 rounded-xl border border-red-500/20 bg-red-50/50 px-6 py-4 text-red-700 shadow-sm transition-all dark:bg-red-950/30 dark:text-red-100" > {children} </div> );