JSFiddle - React, Tailwind, and code Playground

HTML

<input type="button" id="like" value="Like" />
<input type="button" id="follow" value="Follow" />

CSS

html, body{
    padding:20px;
    position:absolute;
    margin-left:auto;
    margin-right;auto;
    float:left;
}

JavaScript

var Icons = {
    image: null,
    speed: 200,
    startSize: 320,
    endSize: 255,
    displaySpeed: 600,
    fadeOutSpeed: 1000,
    heart: function() {
        this.image =...