JSFiddle - React, Tailwind, and code Playground

by Mandeep Singh

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;
}