JSFiddle - React, Tailwind, and code Playground

HTML

<select name="list">
            <option value="1">first element</option>
            <option value="2">second element</option>
            <option value="3">third element</option>
</select>

CSS

select{
  border: 1px solid #000000;
  background-image: url('http://i11.pixs.ru/storage/2/3/9/01png_4879008_24310239.png');
  background-repeat: no-repeat;   
  background-position: right; 
  padding-right: 18px;
  -moz-appearance: none;
  -webkit-appearance: none;
  }
select::-ms-expand{
  display: none;
 }