# @s-ui/react-atom-checkbox

> AtomCheckbox is a component that displays an input checkbox w/ its expected behavior

Latest version **3.11.0** (published 2025-03-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @s-ui/react-atom-checkbox
pnpm add @s-ui/react-atom-checkbox
yarn add @s-ui/react-atom-checkbox
bun add @s-ui/react-atom-checkbox
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.11.0 |
| Published | 2025-03-07 |
| First published | 2019-10-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 20.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | alejandro.ferrante, ivanmlaborda, salvador.juan, andresin87.adevinta, izeller, gfabregoadv, a.ferrer, ignacio_navarro, oscar_ramirez, jordi.munoz, joanleon-adv, aitor.rodriguez, luis-garrido, jenifer.lopez, isabelgomez87, pa.chruscinski.ext, schibstedspain, alfredo.arronte, belen.santos, xavi_ballestar, ferrangbtw, jamile.radloff, davidmartin2108, sergi.quintela, estefania_garcia, carlosvillu-adevinta, miriam-gil, arnau.guell, ferran.simon, victor.perez.adevinta, mariapaula.forero.ext, oscar.gomez, david.nieto, oriol.puig, nacho_torrella, xavi.murcia, ignacio.rodriguez, francisco.ruiz.lloret, sziauberyte, alfredo.zimperz, andresadv, javiauso, alverd004, marian.lucaci, pablogs, alisa_bayanova, cristhianb, sergiocollado, pablo.rey-adevinta, beatrizip, alex.castells, david.cuadrado.ext, giovanny.sayas.ext, patricio.sartore, azahara, marc.benito, sergio.escano, cristina.rodriguez.duque, pol.valls, frandelacasa-adevinta, carolina.mallo.ext, daniel.perez.ext, hpintos_adevinta, carlos.gonzalezl, albert.peiro, oscar-raig-adevinta, thomas.page.ext, sebastian.badea.adevinta, victoria.pasichnyk.ext, sendami.luque.ext, luz_adv, alfredo.narvaez, ruben-martin, dann41, emiliovz, adria.velardos, arturo.vicente, diegomr, sergi.martinez.adevinta, guillemgc3, frontend-jobs, javiermiguel, atilioscolaroadv, crotundu.adevinta, candymd, florinz, denis_z |
| Keywords | @s-ui, react, component, atom, checkbox |

## Links

- npm: https://www.npmjs.com/package/@s-ui/react-atom-checkbox
- Repository: https://github.com/SUI-Components/sui-components
- Homepage: https://sui-components.vercel.app/
- Issues: https://github.com/SUI-Components/sui-components/issues?q=is%3Aopen+label%3A%22Component%3A+checkbox%22
- npm.io page: https://npm.io/package/@s-ui/react-atom-checkbox

## Dependencies (2)

- [@s-ui/react-hooks](https://npm.io/package/@s-ui/react-hooks.md) 1
- [@s-ui/component-dependencies](https://npm.io/package/@s-ui/component-dependencies.md) 1

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 3.11.0 (latest) — 2025-03-07
- 3.10.0 — 2025-03-07
- 3.9.0 — 2025-01-25
- 3.8.0 — 2025-01-20
- 3.7.0 — 2024-02-19
- 3.6.0 — 2024-02-09
- 3.5.0 — 2024-02-08
- 3.4.0 — 2023-12-20
- 3.3.0 — 2023-05-10
- 3.2.0 — 2022-10-14
- 3.1.0 — 2022-07-18
- 2.20.0 — 2022-06-23
- 3.0.0 — 2022-06-23
- 2.18.0 — 2022-06-20
- 2.17.0 — 2022-04-05
- … 22 more at https://npm.io/package/@s-ui/react-atom-checkbox/versions

## README

# AtomCheckbox

AtomCheckbox is a component that displays an input checkbox w/ its expected behavior

[![documentation](https://img.shields.io/badge/read%20the%20doc-black?logo=readthedocs)](https://sui-components.vercel.app/workbench/atom/checkbox/)
[![issue](https://img.shields.io/badge/report%20a%20bug-black?logo=openbugbounty&logoColor=red)](https://github.com/SUI-Components/sui-components/issues/new?&projects=4&template=bug-report.yml&assignees=&template=report-a-bug.yml&title=🪲+&labels=bug,component,atom,checkbox)
[![npm](https://img.shields.io/npm/dt/%40s-ui/react-atom-checkbox?logo=npm&labelColor=black)](https://www.npmjs.com/package/@s-ui/react-atom-checkbox)

[![Issues open](https://img.shields.io/github/issues-search/SUI-Components/sui-components?query=is%3Aopen%20label%3Acomponent%20label%3Acheckbox&logo=openbugbounty&logoColor=red&label=issues%20open&color=red)](https://github.com/SUI-Components/sui-components/issues?q=is%3Aopen+label%3Acomponent+label%3Acheckbox)
[![NPM](https://img.shields.io/npm/l/%40s-ui%2Freact-atom-checkbox)](https://github.com/SUI-Components/sui-components/blob/main/components/atom/checkbox/LICENSE.md)

## Installation

```sh
$ npm install @s-ui/react-atom-checkbox --save
```

## Usage

```js
import AtomCheckbox from '@s-ui/react-atom-checkbox'
```

### Basic usage

```js
<AtomCheckbox />
```

### Checked

```js
<AtomCheckbox checked />
```

### Disabled

```js
<AtomCheckbox disabled />
```

### w/ onChange handler

```js
<AtomCheckbox onChange={console.log} />
```

> **Find full description and more examples in the [demo page](/workbench/atom/checkbox).**

---
_Source: https://npm.io/package/@s-ui/react-atom-checkbox · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
