import { useState } from 'react'; import Uik from "../../ui-kit" import Title from "./Title" function Example () { const [ firstValue, setFirstValue ] = useState(true) const [ secondValue, setSecondValue ] = useState(true) const [ thirdValue, setThirdValue ] = useState(false) const [ fourthValue, setFourthValue ] = useState(false) return ( <> <Uik.Card> <Uik.Form> <Uik.Container> <Uik.Toggle value={firstValue} onChange={e => setFirstValue(e)} /> <Uik.Toggle onText='Enabled' offText='Disabled' value={secondValue} onChange={e => setSecondValue(e)} /> </Uik.Container> <Uik.Container> <Uik.Toggle label='With label' value={thirdValue} onChange={e => setThirdValue(e)} /> <Uik.Toggle label='Disabled toggle' disabled value={fourthValue} onChange={e => setFourthValue(e)} /> </Uik.Container> </Uik.Form> </Uik.Card> </> ) } const code = `const [ firstValue, setFirstValue ] = useState(true) const [ secondValue, setSecondValue ] = useState(true) const [ thirdValue, setThirdValue ] = useState(false) const [ fourthValue, setFourthValue ] = useState(false) <> <Uik.Toggle value={firstValue} onChange={e => setFirstValue(e)} /> <Uik.Toggle onText='Enabled' offText='Disabled' value={secondValue} onChange={e => setSecondValue(e)} /> <Uik.Toggle label='With label' value={thirdValue} onChange={e => setThirdValue(e)} /> <Uik.Toggle label='Disabled toggle' disabled value={fourthValue} onChange={e => setFourthValue(e)} /> </>` export default Example