# @hackr/chakra-ui-radio

> A React component to render custom Radio input types

Latest version **1.0.0-rc.9** (published 2020-11-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install @hackr/chakra-ui-radio
pnpm add @hackr/chakra-ui-radio
yarn add @hackr/chakra-ui-radio
bun add @hackr/chakra-ui-radio
```

## Health

**Score 50/100 (C)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score; popular repo.

Warnings: low downloads.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.0-rc.9 |
| Published | 2020-11-10 |
| First published | 2020-11-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 3 |
| Unpacked size | 10.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 40642 |
| Author | Segun Adebayo |
| Maintainers | gnuns |
| Keywords | radio, input, react, form field, component, chakra ui |

## Links

- npm: https://www.npmjs.com/package/@hackr/chakra-ui-radio
- Repository: https://github.com/chakra-ui/chakra-ui
- Homepage: https://github.com/chakra-ui/chakra-ui#readme
- Issues: https://github.com/chakra-ui/chakra-ui/issues
- npm.io page: https://npm.io/package/@hackr/chakra-ui-radio

## Dependencies (3)

- [@hackr/chakra-ui-hooks](https://npm.io/package/@hackr/chakra-ui-hooks.md) 1.0.0-rc.9
- [@hackr/chakra-ui-utils](https://npm.io/package/@hackr/chakra-ui-utils.md) 1.0.0-rc.9
- [@hackr/chakra-ui-visually-hidden](https://npm.io/package/@hackr/chakra-ui-visually-hidden.md) 1.0.0-rc.9

## 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

- 1.0.0-rc.9 (latest) — 2020-11-10
- 1.0.0-rc-.42 (next) — 2020-11-10

## README

# Radio

Radio component is used in forms when a user needs to select a single value from
several options.

## Installation

```sh
yarn add @chakra-ui/radio

# or

npm i @chakra-ui/radio
```

## Import component

```jsx
import { Radio } from "@chakra-ui/radio"
```

## Usage

```jsx
<Radio>This is a radio</Radio>
```

### RadioGroup

RadioGroup is used to bind multiple radios into a group, and it indicates
whether which option is selected.

```jsx
<RadioGroup defaultValue="one">
  <Radio value="one">One</Radio>
  <Radio value="two">Two</Radio>
  <Radio value="three">Three</Radio>
</RadioGroup>
```

---
_Source: https://npm.io/package/@hackr/chakra-ui-radio · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
