Alerts
- componentes
- /
- alerts
- /
- alert-8
alert-8
Vista previa
Danger
Ha ocurrido un error al crear la cuenta
Código
const Alert8 = () => { return ( <div className="bg-background-secondary py-4 px-6 max-w-md border-l-4 border-red-500 rounded-lg flex items-center gap-3 shadow-lg"> <div> <i className="fi fi-sr-circle-xmark text-2xl text-red-500"></i> </div> <div> <h3 className="font-semibold text-red-500">Danger</h3> <p>Ha ocurrido un error al crear la cuenta</p> </div> </div> ); }; export default Alert8;