New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@chakra-xui/radio

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-xui/radio

A React component to render custom Radio input types

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

Radio

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

Installation

yarn add @chakra-xui/radio

# or

npm i @chakra-xui/radio

Import component

import { Radio } from "@chakra-xui/radio"

Usage

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

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

Keywords

radio

FAQs

Package last updated on 30 Dec 2020

Did you know?

Socket

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.

Install

Related posts