@proyecto26/animatable-component
Version:
Animate once, use Everywhere! 💫
14 lines (13 loc) • 366 B
JavaScript
/**
* Animate.css Animations
*/
import { ANIMATIONS as ANIMATIONS_ANIMATE_CSS } from './animate/common';
/**
* Animista Animations
*/
import { ANIMATIONS as ANIMATIONS_ANIMISTA } from './animista/common';
export const ANIMATIONS = Object.assign(Object.assign({
/**
* DEFAULT ANIMATION
*/
NONE: 'none' }, ANIMATIONS_ANIMATE_CSS), ANIMATIONS_ANIMISTA);