/* [project]/src/features/resusable/components/AppButton.css [app-client] (css) */
@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.app-button-spinner {
  border: 3px solid #fff;
  border-top-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: 1s linear infinite spin;
}


/*# sourceMappingURL=src_features_resusable_components_AppButton_d518b9e8.css.map*/