@trendmicro/react-toggle-switch
v0.5.7
Published
Trend Micro Components: React Toggle Switch
Downloads
1,324
Readme
react-toggle-switch
React Toggle Switch
Demo: https://trendmicro-frontend.github.io/react-toggle-switch
Installation
- Install the latest version of react and react-toggle-switch:
npm install --save react @trendmicro/react-toggle-switch
- At this point you can import
@trendmicro/react-toggle-switch
and its styles in your application as follows:
import ToggleSwitch from '@trendmicro/react-toggle-switch';
// Be sure to include styles at some point, probably during your bootstraping
import '@trendmicro/react-toggle-switch/dist/react-toggle-switch.css';
Usage
Uncontrolled Component
<ToggleSwitch
checked
ref={(node) => {
this.toggleSwitch = node;
}}
/>
You can get the value of the checked attribute:
console.log(this.toggleSwitch.checked);
// => true
Controlled Component
<ToggleSwitch
checked={this.state.checked}
onChange={(event) => {
this.setState({ checked: !this.state.checked });
}}
/>
API
Properties
License
MIT