File size: 248 Bytes
aa2e6af
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export const ErrorMessage = ({ children }: { children: React.ReactNode }) => (
  <div
    className="rounded-md border border-red-500 bg-red-500/10 px-3 py-2 text-sm text-gray-600 dark:text-gray-200"
    role="alert"
  >
    {children}
  </div>
);