File indexing completed on 2025-01-26 05:27:58

0001 import React from 'react';
0002 function SwitchItem(props){
0003   return(
0004     <div className="switchContainer">
0005      <label className="switch">
0006      <input type="checkbox" defaultChecked={props.onSwitchStyleChecked} onChange={props.onSwitchStyle}/>
0007      <span className="slider round"></span>
0008      </label>
0009     </div>
0010   )
0011 }
0012 
0013 export default SwitchItem;