Alerts
  • componentes
  • /
  • alerts
  • /
  • alert-7

alert-7

  • Vista previa

    Info

    La cuenta se ha creado, pero está inactiva

  • Código

    const Alert7 = () => {
      return (
        <div className="bg-background-secondary py-4 px-6 max-w-md border-l-4 border-blue-500 rounded-lg flex items-center gap-3 shadow-lg">
          <div>
            <i className="fi fi-sr-hexagon-exclamation text-2xl text-blue-500"></i>
          </div>
          <div>
            <h3 className="font-semibold text-blue-500">Info</h3>
            <p>La cuenta se ha creado, pero está inactiva</p>
          </div>
        </div>
      );
    };
    
    export default Alert7;