From 69b9117781c815cac5e0f22c955e5f639b70e2eb Mon Sep 17 00:00:00 2001 From: Fabrizio Duroni Date: Thu, 28 Nov 2024 18:30:20 +0100 Subject: [PATCH] Fix default value for animation direction. --- packages/npm/src/constants/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/npm/src/constants/index.ts b/packages/npm/src/constants/index.ts index f6cbb50..7ae88eb 100644 --- a/packages/npm/src/constants/index.ts +++ b/packages/npm/src/constants/index.ts @@ -54,7 +54,7 @@ export const DEFAULT_CONFIG = { BORDER_RADIUS: 4, DURATION: 1200, ANIMATION_TYPE: 'shiver' as _animationType, - ANIMATION_DIRECTION: 'horizontalLeft' as _animationDirection, + ANIMATION_DIRECTION: 'horizontalRight' as _animationDirection, BONE_COLOR: '#E1E9EE', HIGHLIGHT_COLOR: '#F2F8FC', EASING: Easing.bezier(0.5, 0, 0.25, 1),