Skip to main content

AtomCheckbox

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

Installation

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

Usage

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

Basic usage

<AtomCheckbox />

Checked

<AtomCheckbox checked />

Disabled

<AtomCheckbox disabled />

w/ onChange handler

<AtomCheckbox onChange={console.log} />

Find full description and more examples in the demo page.