This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from 'styled-components'; | |
// Example usage: | |
/* | |
<StyledSwitch> | |
<input type="checkbox" name="isSwitched" checked={this.state.isSwitched} onChange={(e) => console.log('update isSwitched')} /> | |
<div className="slider round"/> | |
</StyledSwitch> | |
*/ |