JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    
<input type="radio" value="" name="wager" id="wager" />
    
</form>

CSS

input[type='radio'] {

  width: 4em;
   
  height: 4em; 
    
}

JavaScript

$( document ).ready( function () {
    
    $( "#wager" ).focus();
    
} );