
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
react-toggle
Advanced tools
An elegant, accessible toggle component for React. Also a glorified checkbox.
The react-toggle package is a React component that provides a highly customizable toggle switch. It is used to create toggle buttons that can switch between two states, such as on/off or true/false. The package is lightweight and easy to integrate into any React application.
Basic Toggle
This code demonstrates a basic toggle switch using the react-toggle package. The toggle is initially set to the 'off' state.
import React from 'react';
import Toggle from 'react-toggle';
import 'react-toggle/style.css';
function App() {
return (
<div>
<label>
<Toggle defaultChecked={false} />
<span>Toggle me</span>
</label>
</div>
);
}
export default App;
Custom Icons
This code demonstrates how to use custom icons for the toggle switch. The toggle shows a moon icon when checked and a sun icon when unchecked.
import React from 'react';
import Toggle from 'react-toggle';
import 'react-toggle/style.css';
function App() {
return (
<div>
<label>
<Toggle
defaultChecked={true}
icons={{
checked: <span>🌜</span>,
unchecked: <span>🌞</span>
}}
/>
<span>Toggle with custom icons</span>
</label>
</div>
);
}
export default App;
Disabled Toggle
This code demonstrates a disabled toggle switch. The toggle is set to the 'on' state and cannot be changed by the user.
import React from 'react';
import Toggle from 'react-toggle';
import 'react-toggle/style.css';
function App() {
return (
<div>
<label>
<Toggle defaultChecked={true} disabled={true} />
<span>Disabled toggle</span>
</label>
</div>
);
}
export default App;
The rc-switch package is another React component for creating toggle switches. It offers similar functionality to react-toggle but with a different set of customization options and styles. It is part of the rc-components library, which provides a variety of reusable React components.
The react-switch package provides a customizable toggle switch component for React. It offers a similar feature set to react-toggle, including custom icons and disabled states. It is known for its ease of use and flexibility in styling.
The react-toggle-switch package is another alternative for creating toggle switches in React applications. It provides a simple API and allows for easy customization of the switch's appearance and behavior. It is a lightweight option for developers looking for basic toggle functionality.
An elegant, accessible toggle component for React. Also a glorified checkbox.
See usage and examples.
The component takes the following props.
Prop | Type | Description |
---|---|---|
checked | boolean | If true , the toggle is checked. If false , the toggle is unchecked. Use this if you want to treat the toggle as a controlled component |
defaultChecked | boolean | If true on initial render, the toggle is checked. If false on initial render, the toggle is unchecked. Use this if you want to treat the toggle as an uncontrolled component |
onChange | function | Callback function to invoke when the user clicks on the toggle. The function signature should be the following: function(e) { } . To get the current checked status from the event, use e.target.checked . |
onFocus | function | Callback function to invoke when field has focus. The function signature should be the following: function(e) { } |
onBlur | function | Callback function to invoke when field loses focus. The function signature should be the following: function(e) { } |
name | string | The value of the name attribute of the wrapped <input> element |
value | string | The value of the value attribute of the wrapped <input> element |
id | string | The value of the id attribute of the wrapped <input> element |
icons | object | If false , no icons are displayed. You may also pass custom icon components in icons={{checked: <CheckedIcon />, unchecked: <UncheckedIcon />}} |
aria-labelledby | string | The value of the aria-labelledby attribute of the wrapped <input> element |
aria-label | string | The value of the aria-label attribute of the wrapped <input> element |
disabled | boolean | If true , the toggle is disabled. If false , the toggle is enabled |
npm install react-toggle
If you want the default styling, include the component's CSS with
import "react-toggle/style.css" // for ES6 modules
// or
require("react-toggle/style.css") // for CommonJS
npm install
npm run dev
npm run build
MIT
FAQs
An elegant, accessible toggle component for React. Also a glorified checkbox.
The npm package react-toggle receives a total of 0 weekly downloads. As such, react-toggle popularity was classified as not popular.
We found that react-toggle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.