Files
zeroclock/src/utils/motion.ts

7 lines
198 B
TypeScript

// Spring presets for @vueuse/motion
export const springPresets = {
snappy: { damping: 20, stiffness: 300 },
smooth: { damping: 15, stiffness: 200 },
popIn: { damping: 12, stiffness: 400 },
}