React library to use animations on embedded experiences where the use of !important in the CSS is required.
On most case this library shouldn't be used, used only if:
- if you are required to use !important on your animations' CSS
npm install --save react-embedded-animationsimport React, { Component } from 'react'
import { Animated, TRANSITIONS } from 'react-embedded-animations'
class Example extends Component {
  render() {
    return (
      <Animated
        animation={TRANSITIONS.OPACITY_IN}
        duration={500}
        delay={0}
        easing='ease-in-out'
      >
        <div className='embedded-landing-start-logo' />
      </Animated>
    )
  }
}MIT © faridsaud