Alerts
- componentes
- /
- alerts
- /
- alert-3
alert-3
Vista previa
Info
Se ha creado la cuenta, pero esta inactiva
Código
const Alert3 = () => { return ( <div className="flex bg-background-secondary shadow-lg rounded-lg"> <div className="icon bg-blue-600 dark:bg-blue-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-blue-600">Info</h2> <p>Se ha creado la cuenta, pero esta inactiva</p> </div> </div> ); }; export default Alert3;