Spaces:
Running
Running
| interface ErrorMessageProps { | |
| message: string; | |
| title?: string; | |
| className?: string; | |
| } | |
| export default function ErrorMessage({ message, title = 'Error', className = '' }: ErrorMessageProps) { | |
| return ( | |
| <div className={`bg-red-900/20 border border-red-800 rounded-lg p-4 ${className}`}> | |
| <div className="flex items-start gap-3"> | |
| <div className="flex-shrink-0 text-red-400"> | |
| <svg className="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> | |
| <path | |
| fillRule="evenodd" | |
| d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" | |
| clipRule="evenodd" | |
| /> | |
| </svg> | |
| </div> | |
| <div className="flex-1"> | |
| <h4 className="text-sm font-semibold text-red-400 mb-1">{title}</h4> | |
| <p className="text-sm text-red-300">{message}</p> | |
| </div> | |
| </div> | |
| </div> | |
| ); | |
| } | |