JSPM

@instructure/ui-checkbox

7.3.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17770
  • Score
    100M100P100Q142923F
  • License MIT

styled HTML input type='checkbox' component.

Package Exports

  • @instructure/ui-checkbox

Readme


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 @instructure/ui-checkbox

Usage

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

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