JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" name="imagem" id="i1" />
<label for="i1"><img src="http://vkontakte.ru/images/gifts/256/81.jpg" alt=""></label>
<input type="radio" name="imagem" id="i2" />
<label for="i2"><img src="http://vkontakte.ru/images/gifts/256/82.jpg" alt=""></label>
<input type="radio" name="imagem" id="i3" />
<label for="i3"><img src="http://vkontakte.ru/images/gifts/256/83.jpg" alt=""></label>

CSS

input[type="radio"] {
    visibility: hidden;
}

label {
    display: block;
    border: 4px solid #666;
}

input[type="radio"]:checked+label {
    border-color: #ccf;
}