interface MotionConfigProps {
    children?: ReactNode;
    isStatic?: boolean;
    isValidProp?: IsValidProp;
    reducedMotion?: ReducedMotionConfig;
    transformPagePoint?: TransformPoint;
    transition?: Transition;
}

Hierarchy

Properties

children?: ReactNode
isStatic?: boolean

Internal. Determines whether this is a static context ie the Framer canvas. If so, it'll disable all dynamic functionality.

isValidProp?: IsValidProp
reducedMotion?: ReducedMotionConfig

If true, will respect the device prefersReducedMotion setting by switching transform animations off.

transformPagePoint?: TransformPoint

Internal, exported only for usage in Framer

transition?: Transition

Defines a new default transition for the entire tree.

Generated using TypeDoc