.decorated-with-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.decorated-with-icon-button svg {
  width: 1.2em;
  height: 1.2em;
}

.decorated-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.decorated-with-icon svg {
  width: 1.2em;
  height: 1.2em;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
