From 3567b3f6f4197f5aaa1b55beffc098a4d5cd40f1 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 12 Aug 2020 07:25:16 -0400 Subject: [PATCH] Set default duration --- src/components/animation/animation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/animation/animation.tsx b/src/components/animation/animation.tsx index 669c5fe4..f2131f70 100644 --- a/src/components/animation/animation.tsx +++ b/src/components/animation/animation.tsx @@ -34,7 +34,7 @@ export class Animate { @Prop() direction: PlaybackDirection = 'normal'; /** The number of milliseconds each iteration of the animation takes to complete. */ - @Prop() duration = 0; + @Prop() duration = 1000; /** The rate of the animation's change over time. */ @Prop() easing = 'linear';