JSFiddle - React, Tailwind, and code Playground

by sheshu036

HTML

<link rel="stylesheet" href="//gitcdn.github.io/bootstrap-toggle/2.2.0/css/bootstrap-toggle.min.css">
<script src="//gitcdn.github.io/bootstrap-toggle/2.2.0/js/bootstrap-toggle.min.js"></script>
<input id="toggle-one" checked type="checkbox" data-on="Enabled" data-off="Disabled" data-toggle="toggle">
    
    <input type="checkbox" checked data-toggle="toggle" data-on="<i class='fa fa-play'></i> Play" data-off="<i class='fa fa-pause'></i> Pause">

JavaScript

$(function() {
    $('#toggle-one').bootstrapToggle();
  })