Loading...
Loading...
A set of modern, accessible alert banners for success, error, warning, and info states.
export function ModernAlerts() {
return (
<div className="space-y-4 max-w-2xl mx-auto p-6">
{/* Success Alert */}
<div className="flex items-center p-4 mb-4 text-sm text-green-800 border border-green-300 rounded-xl bg-green-50" role="alert">
<svg className="flex-shrink-0 inline w-5 h-5 mr-3" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
</svg>
<div>
<span className="font-bold">Success!</span> Your changes have been saved successfully.
</div>
</div>
{/* Error Alert */}
<div className="flex items-center p-4 mb-4 text-sm text-red-800 border border-red-300 rounded-xl bg-red-50" role="alert">
<svg className="flex-shrink-0 inline w-5 h-5 mr-3" 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>
<span className="font-bold">Error:</span> Failed to connect to the database. Please try again later.
</div>
</div>
{/* Warning Alert */}
<div className="flex items-center p-4 mb-4 text-sm text-yellow-800 border border-yellow-300 rounded-xl bg-yellow-50" role="alert">
<svg className="flex-shrink-0 inline w-5 h-5 mr-3" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z" clipRule="evenodd" />
</svg>
<div>
<span className="font-bold">Warning:</span> Your subscription is expiring in 3 days.
</div>
</div>
{/* Info Alert */}
<div className="flex items-center p-4 text-sm text-blue-800 border border-blue-300 rounded-xl bg-blue-50" role="alert">
<svg className="flex-shrink-0 inline w-5 h-5 mr-3" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clipRule="evenodd" />
</svg>
<div>
<span className="font-bold">Info:</span> A new software update is available for download.
</div>
</div>
</div>
);
}