How to cancel the property ant-click-animating-withou when using Button in ant design

when you use Button in ant design, each click adds a property ant-click-animating-withou to the view button, which is how to cancel or trigger a glowing object every time you click button. Neither outline nor box-shadow can be canceled.

Sep.29,2021

in the code of antd Button,

<Wave>
  <button
    {...otherProps}
    type={htmlType || 'button'}
    className={classes}
    onClick={this.handleClick}
    title={title}
  >
    {iconNode}{kids}
  </button>
</Wave>

Wave achieves this halo effect. The attribute ant-click-animating-without-extra-node cannot be removed without modifying the antd source code, and this effect can only be removed through css.
the following is the original css code:

[ant-click-animating],
[ant-click-animating-without-extra-node] {
  position: relative;
}
[ant-click-animating-without-extra-node]:after,
.ant-click-animating-node {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  border-radius: inherit;
  border: 0 solid -sharp1890ff;
  opacity: 0.2;
  -webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
          animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: block;
  pointer-events: none;
}
@-webkit-keyframes waveEffect {
  100% {
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border-width: 6px;
  }
}
@keyframes waveEffect {
  100% {
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border-width: 6px;
  }
}
@-webkit-keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
@keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}

can be overridden with the following code:

button[ant-click-animating-without-extra-node]:after {
  border: 0 none;
  opacity: 0;
  animation:none 0 ease 0 1 normal;
}

@ wave-animation-width: 0;

Menu