Generic animation container. Uses AirBnBs bodymovin library under the hood. Supported types are "loader".

    <Animation type="loader" />

It can be controlled using [bodymovin properties](https://github.com/bodymovin/bodymovin#html).

    <Animation type="loader" bodymovinProps={{ autoplay: false }} />

Animation object can be retrieved using the `getAnimation` property. This returns a [bodymovin animation object](https://github.com/bodymovin/bodymovin#usage).

    <Animation type="loader" bodymovinProps={{ autoplay: false }} getAnimation={(animation) => {
      animation.play();
      animation.setSpeed(2);
    }} />
