UNPKG

kinetic-components

Version:

Use CSS animations or your favorite JS animation library to animate a single React component or orchestrate animations amongst a collection of React components.

13 lines (12 loc) 270 B
import React from 'react'; /** * * A component to js or css animation usage */ declare const MoveToggle: React.FC<{ children: (args: { shouldMove: boolean; move: () => void; }) => React.ReactElement; }>; export default MoveToggle;