JSFiddle - React, Tailwind, and code Playground

by Adam Pavlov

HTML

<select class="form-control" id="questionType">
  <option>Select</option>
  <option>General Question</option>
  <option>Technical Question</option>
</select>

CSS

select::-ms-expand {
    display: none;
}
select.form-control {
  background: #f0f0f0 url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-down-b-128.png') no-repeat right center;
  background-size: 16px;
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
}