JSFiddle - React, Tailwind, and code Playground
HTML
<div>Click the upload icon below to upload a file.</div>
<div class="image-upload">
<label for="file-input">
<img src="http://goo.gl/pB9rpQ"/>
</label>
<input id="file-input" type="file"/>
</div>
CSS
.image-upload > input
{
display: none;
}
.image-upload img
{
width: 80px;
cursor: pointer;
}