Alerts
  • componentes
  • /
  • alerts
  • /
  • alert-6

alert-6

  • Vista previa

    Warning

    La cuenta se ha creado, pero está inactiva

  • Código

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