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.

12 lines (11 loc) 225 B
import React from 'react'; /** * * A component to toggle visibility */ declare const ToggleJSCSS: React.FC<{ isJS: boolean; setIsJS: () => void; setIsCSS: () => void; }>; export default ToggleJSCSS;