JSFiddle - React, Tailwind, and code Playground

HTML

<div class="new_Btn">SelectPicture</div><br>
<input id="html_btn" type='file'" /><br>

CSS

.new_Btn {
// your css propterties
}

#html_btn {
 display:none;
}

JavaScript

$('.new_Btn').bind("click" , function () {
        $('#html_btn').click();
    });