JSFiddle - React, Tailwind, and code Playground

HTML

<div class="quick_shop_container" data-price-wrapper="">
                  <button class="quick_shop">
                    <span class="quick_shop_text">Quick Shop</span>
                    <div data-price-wrapper="">
                      <div class="product-item-price price" data-product-price="">| £51.95</div>
                    </div>
                  </button> 
      </div>

CSS

.quick_shop_container{
  width:100%;
}

.quick_shop{
  background-color:white;
  display:flex;

}


.quick_shop_text{
  float:left;
}

.product-item-price{
  float:right;
}