JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" class="rdCheck" checked="checked" text="click me"/> click me

JavaScript

$('.rdCheck').dblclick(function(){
    if($(this).is(':checked'))
    {
        $(this).removeAttr('checked');
    }
});