@react-to-styled/toggle
v0.3.1-alpha.3
Published
Toggle input
Downloads
5
Maintainers
Readme
React to styled toggle
Package for simple css-in-js switch component.
Installation
We suggest this package to be imported
Install with npm:
npm install @react-to-styled/toggle
Install with yarn:
yarn add @react-to-styled/toggle
Import
import { Toggle, ToggleProps } from '@react-to-styled/toggle'
Dependencies
All our components depend on these dependencies
{
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"styled-components": ">=5"
}
}
Usage
Here is a quick example how to add Loader:
import React, { useState } from 'react'
import ReactDOM from 'react-dom'
import { Toggle } from '@react-to-styled/toggle'
function App() {
const [checked, setChecked] = useState()
return (
<Toggle checked={checked} onChange={e => setChecked(e.target.checked)} />
)
}
ReactDOM.render(<App />, document.querySelector('#app'))
You can also check our storybook for more examples