.ml-icon {
  width: fit-content;
  height: fit-content;
  &-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    // transform: translateY(1px);
  }
  &-rotating {
    animation: loading 1s infinite linear;
  }
}

@keyframes loading {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
