This package has been deprecated

Author message:

Package no longer supported. Use @zendeskgarden/react-forms instead.

@zendeskgarden/react-radios

6.9.2 • Public • Published

@zendeskgarden/react-radios npm version

This package includes components relating to radio buttons in the Garden Design System.

DEPRECATION WARNING

This package has been deprecated in favor of the API provided in the @zendeskgarden/react-forms package.

This package will stop receiving updates in a future major release.

Installation

npm install @zendeskgarden/react-radios

# Peer Dependencies - Also Required
npm install react react-dom prop-types styled-components @zendeskgarden/react-theming

Usage

Our Radio component is a simple abstraction around the native <input type="radio" /> element.

/**
 * Include radio styling at the root of your application
 */
import '@zendeskgarden/react-radios/dist/styles.css';

import { ThemeProvider } from '@zendeskgarden/react-theming';
import { Radio, Label } from '@zendeskgarden/react-radios';

/**
 * Place a `ThemeProvider` at the root of your React application
 */
<ThemeProvider>
  <form>
    <Radio name="options" value="option-1">
      <Label>Option 1</Label>
    </Radio>
    <Radio name="options" value="option-2" disabled>
      <Label>Disabled Option</Label>
    </Radio>
    <Radio name="options" value="option-3">
      <Label>Option 3</Label>
    </Radio>
  </form>
</ThemeProvider>;

Package Sidebar

Install

npm i @zendeskgarden/react-radios

Weekly Downloads

86

Version

6.9.2

License

Apache-2.0

Unpacked Size

275 kB

Total Files

9

Last publish

Collaborators

  • zendesk-garden