diff --git a/packages/react/src/components/CreateAnimation.tsx b/packages/react/src/components/CreateAnimation.tsx index 111ae6a619..1f78ff481a 100644 --- a/packages/react/src/components/CreateAnimation.tsx +++ b/packages/react/src/components/CreateAnimation.tsx @@ -30,9 +30,9 @@ export interface CreateAnimationProps { onFinish?: { callback: AnimationLifecycle; opts?: AnimationCallbackOptions; }; keyframes?: AnimationKeyFrames; - from?: PartialPropertyValue; - to?: PartialPropertyValue; - fromTo?: PropertyValue; + from?: PartialPropertyValue[] | PartialPropertyValue; + to?: PartialPropertyValue[] | PartialPropertyValue; + fromTo?: PropertyValue[] | PropertyValue; play?: boolean; pause?: boolean;