99.10.0 • Published 4 years ago

@temporg/ui-radio-input v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-radio-input

npm  build-status  MIT License  Code of Conduct

A styled HTML input type="radio" element

Components

The ui-radio-input package contains the following:

Installation

yarn add @temporg/ui-radio-input

Usage

import React from 'react'
import { RadioInput } from '@instrucutre/ui-radio-input'

const MyRadioInput = () => {
  return (
    <RadioInput
      label="Turn on all the features"
      value="foo"
      name="bar"
    />
  )
}