JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://dimox.github.io/jQueryFormStyler/jquery.formstyler.css">
<script src="https://dimox.github.io/jQueryFormStyler/jquery.formstyler.js"></script>
<select>
<option>-- Выберите --</option>
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
<option>Пункт 5</option>
</select>
<br><br>
<input type="button" class="button styler" value="Кнопка">
JavaScript
$('select').styler();
$('.button').click(function(){
$('select').styler('destroy');
});