Files
twenty/packages/twenty-front/src/modules/ui/theme/constants/animation.ts
2023-12-10 18:10:54 +01:00

10 lines
166 B
TypeScript

export const animation = {
duration: {
instant: 0.075,
fast: 0.15,
normal: 0.3,
},
};
export type AnimationDuration = 'instant' | 'fast' | 'normal';