An basic input row with a label and Switch, allowing the user to toggle a boolean value.
type: string
defaultValue: 'transparent'
type: bool
defaultValue: true
type: string
defaultValue: 'success'
type: func
type: any
type: bool
import { InputToggle } from 'panza'
<InputToggle
value={this.state.editable}
onTintColor='warning'
onValueChange={(editable) => this.setState({ editable })}
label='Editable?'
/>