Alerts
- componentes
- /
- alerts
- /
- alert-2
alert-2
Vista previa
Warning
Se ha creado la cuenta, pero esta inactiva
Código
const Alert2 = () => { return ( <div className="flex bg-background-secondary shadow-lg rounded-lg"> <div className="icon bg-amber-600 dark:bg-amber-800 flex justify-center items-center py-4 px-6 rounded-tr-3xl rounded-lg"> <i className="fi fi-sr-hexagon-exclamation text-2xl text-white"></i> </div> <div className="flex flex-col p-4 rounded-tr-lg rounded-br-lg"> <h2 className="font-semibold text-amber-600">Warning</h2> <p>Se ha creado la cuenta, pero esta inactiva</p> </div> </div> ); }; export default Alert2;