curls
Version:
💪 Responsive, expressive UI primitives for React written with Style Hooks and Emotion
21 lines (20 loc) • 443 B
JavaScript
export const duration = {
veryFast: 80,
fast: 160,
normal: 320,
slow: 480,
verySlow: 960,
}
export const easing = {
boomerang: [0.3, 1, 0.54, 1.618],
bounce: [0.93, 0.13, 0.382, 1.618],
easeOut: 'ease-out',
easeIn: 'ease-in',
easeInOut: 'ease-in-out',
linear: 'linear',
swiftMove: [0.4, 0, 0.2, 1],
swifterMove: [0.4, 0, 0, 1],
heavyMove: [0.7, 0, 0.6, 1],
swiftIn: [0.4, 0, 1, 1],
swiftOut: [0, 0, 0.58, 1],
}