Type alias animate_spin

animate_spin: "animate-spin"

Css

animation: spin 1s linear infinite;@keyframes spin {  from {    transform: rotate(0deg);  }  to {    transform: rotate(360deg);  }}

Description

You can refer to the official tailwind documentation

Description

You can refer to the typedoc

Since

Tailwind v3.2.7

Generated using TypeDoc