File size: 347 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { defineTokens } from "../def"
export const animations = defineTokens.animations({
spin: {
value: "spin 1s linear infinite",
},
ping: {
value: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
},
pulse: {
value: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
bounce: {
value: "bounce 1s infinite",
},
})
|