Spinner Type
Appearance
48px
4px
1s
Preview
Generated CSS
@keyframes spin {
to { transform: rotate(360deg); }
}
.spinner {
width: 48px;
height: 48px;
border: 4px solid #6366f120;
border-top-color: #6366f1;
border-radius: 50%;
animation: spin 1s linear infinite;
}