JSFiddle - React, Tailwind, and code Playground
HTML
Standard
<input type="month" min="2012-10" max="2017-10" value="2016-10"/>
<br/><br/>With no big arrow
<input type="month" min="2012-10" max="2017-10" value="2016-10" class="no-arrow" />
CSS
.no-arrow::-webkit-calendar-picker-indicator {
display: none;
}