mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
export const TRANSITION_EASINGS = {
|
|
ease: [0.25, 0.1, 0.25, 1],
|
|
easeIn: [0.4, 0, 1, 1],
|
|
easeOut: [0, 0, 0.2, 1],
|
|
easeInOut: [0.4, 0, 0.2, 1],
|
|
spring: [0.155, 1.105, 0.295, 1.12],
|
|
softSpring: [0.16, 1.11, 0.3, 1.02],
|
|
} as const;
|