JSFiddle - React, Tailwind, and code Playground

HTML

<div class="product-add-to-cart-container float-left">
                            <div class="product-add-to-cart"><a href="#" class="product-button">Add to cart</a>
                            </div>
                        </div>

<img id="fb-like" src="http://modestpeach.com/static/images/share/trans.gif">
<img id="twitter" src="http://modestpeach.com/static/images/share/trans.gif">
<img id="email" src="http://modestpeach.com/static/images/share/trans.gif">

CSS

div.product-add-to-cart-container {
    height: 25px;
    width: 110px;
    background-color: #9bc9c7;
    padding: 2px;
}

div.product-add-to-cart-container:hover {
    background-color: #eabeb2;
}

div.product-add-to-cart {
    height: 23px; /* 25 + 1 + 1 - 2 - 2 = 21px */
    width: 108px; /* 110 + 1 + 1 - 2 - 2 = 106px */
    border: 1px solid #ffffff;
    text-align: center;
    cursor: pointer;
}

div.product-add-to-cart a.product-button {
    color: #fefefe;
    text-transform: uppercase;
    line-height: 25px;
    font-family: Arial;
    font-weight: normal;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.13em; /* 130 tracking */
    text-decoration: none;
}


#fb-like {
    background: url('http://modestpeach.com/static/images/share/fb-icon.png') 0 0;
    display: inline-block;
    width: 29px;
    height: 29px;
    text-indent: -99999px;
}

#fb-like:hover {
    background-position: bottom;
}

#twitter {
    background: url('http://modestpeach.com/static/images/share/twitter-icon.png') 0 0;
div.product-add-to-cart-container {
    height: 25px;
    width: 110px;
    background-color: #9bc9c7;
    padding: 2px;
}

div.product-add-to-cart-container:hover {
    background-color: #eabeb2;
}

div.product-add-to-cart {
    height: 23px; /* 25 + 1 + 1 - 2 - 2 = 21px */
    width: 108px; /* 110 + 1 + 1 - 2 - 2 = 106px */
    border: 1px solid #ffffff;
    text-align: center;
    cursor: pointer;
}

div.product-add-to-cart a.product-button {
    color: #fefefe;
    text-transform: uppercase;
    line-height: 25px;
    font-family: 'Archer-Bold-Pro';
    font-weight: normal;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.13em; /* 130 tracking */
}

    display: inline-block;
    width: 29px;
    height: 29px;
    text-indent: -99999px;
}

#twitter:hover {
    background-position: bottom;
}

#email {
    background: url('http://modestpeach.com/static/images/share/email-icon.png') 0 0;
    display: inline-block;
    width:...