JSFiddle - React, Tailwind, and code Playground

HTML

<select>
  <option>Select of options</option>
  <option>VALUE1</option>
  <option disabled>VALUE2</option>
  <option disabled>VALUE3</option>
  <option>VALUE4</option>
  <option>VALUE5</option>
</select>

CSS

select,
option {
  appearance: none;
}
option:disabled {
  color: red;
}