LibreChat/client/src/components/Auth/ErrorMessage.tsx

10 lines
274 B
TypeScript
Raw Normal View History

export const ErrorMessage = ({ children }: { children: React.ReactNode }) => (
<div
role="alert"
aria-live="assertive"
className="rounded-md border border-red-500 bg-red-500/10 px-3 py-2 text-sm text-gray-600 dark:text-gray-200"
>
{children}
</div>
);