Alerts
  • componentes
  • /
  • alerts
  • /
  • alert-4

alert-4

  • Vista previa

    Danger

    Ha ocurrido un error al registrar la cuenta

  • Componente

    const Alert4 = () => {
      return (
        <div className="flex bg-background-secondary shadow-lg rounded-lg">
          <div className="icon bg-red-600 dark:bg-red-800 flex justify-center items-center py-4 px-6 rounded-tr-3xl rounded-lg">
            <i className="fi fi-sr-circle-xmark text-2xl text-white"></i>
          </div>
          <div className="flex flex-col p-4 rounded-tr-lg rounded-br-lg">
            <h2 className="font-semibold text-red-600">Danger</h2>
            <p>Ha ocurrido un error al registrar la cuenta</p>
          </div>
        </div>
      );
    };
    
    export default Alert4;