Spin Clockwise
tailwind.config.ts
{
"animation": {
"spin-clockwise": "spin-clockwise 0.6s linear"
},
"spin-clockwise": {
"0%": {
"transform": "rotate(0deg)"
},
"100%": {
"transform": "rotate(360deg)"
}
}
}