0.1.1 • Published 4 years ago

@rock-kit/ui-checkbox v0.1.1

Weekly downloads
-
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 @rock-kit/ui-checkbox

Usage

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

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