JSFiddle - React, Tailwind, and code Playground

HTML

<select class="col-xm-8 col-sm-8 col-xs-8 pull-right">
  <option selected="selected" icon="">Sort Topics</i>
  </option>

  <option>1</option>
  <option>2</option>
  <option>3</option>
  <option>4</option>
</select>

CSS

select::-ms-expand {
    display: none;
}
select {
  border: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  background: url(../images/select-arrow.png) no-repeat 95% 50% #ffffff;
  background-size: 12%;
  overflow: hidden;
  border: 1px solid #b4b4b4;
  padding: 5px;
  font-size: 16px;
  text-indent: 0.01px;
  text-overflow: "";
}