99.10.0 • Published 4 years ago

@temporg/ui-checkbox v99.10.0

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

category: packages

ui-checkbox

npm  build-status  MIT License  Code of Conduct

A styled HTML input type="checkbox" component.

Components

The ui-checkbox package contains the following:

Installation

yarn add @temporg/ui-checkbox

Usage

import React from 'react'
import { Checkbox } from '@temporg/ui-checkbox'

const MyCheckbox = () => {
  return (
     <Checkbox label="Turn on Features for all Participants" value="on" />
  )
}