# kodobe-react-input

> Kodobe React Input

Latest version **2.0.5** (published 2022-08-08) · ISC license · 0 weekly downloads

## Install

```sh
npm install kodobe-react-input
pnpm add kodobe-react-input
yarn add kodobe-react-input
bun add kodobe-react-input
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.5 |
| Published | 2022-08-08 |
| First published | 2021-02-04 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 7.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Adefemigreat |
| Maintainers | adefemi, kodobe |

## Links

- npm: https://www.npmjs.com/package/kodobe-react-input
- npm.io page: https://npm.io/package/kodobe-react-input

## Dependencies (1)

- [prop-types](https://npm.io/package/prop-types.md) ^15.7.2

## Recent versions

- 2.0.5 (latest) — 2022-08-08
- 2.0.4 — 2022-08-04
- 2.0.3 — 2021-02-18
- 2.0.2 — 2021-02-18
- 2.0.1 — 2021-02-11
- 2.0.0 — 2021-02-10
- 1.0.1 — 2021-02-04

## README

# Kodobe React Checkbox

This is a simple react checkbox package.

## Install

`npm install kodobe-react-checkbox`

or

`yarn add kodobe-react-checkbox`

## Setup

`import Checkbox from 'kodobe-react-checkbox';`

## Usage

    import Checkbox from "kodobe-react-checkbox";

    function App() {
        return (
            <div>
                <h3>Here is how to use a checkbox</h3>
                <Checkbox isChecked={true} onCheck={(t) => console(t.target.value)} />
            </div>
        );
    }

## Options

- **isChecked** : state of the radio (boolean, default=false)
- **disabled** : if the switch can be toggled (boolean, default=false)
- **onCheck** : toggles checkbox button (function, required)
- **style** : (object)
- **className** : (string)
- **id** : (any)
- **name** : (string)

---
_Source: https://npm.io/package/kodobe-react-input · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
