JSPM

@instructure/ui-checkbox

9.2.1-snapshot-3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17229
  • Score
    100M100P100Q145495F
  • License MIT

styled HTML input type='checkbox' component.

Package Exports

  • @instructure/ui-checkbox
  • @instructure/ui-checkbox/es/index.js
  • @instructure/ui-checkbox/lib/Checkbox
  • @instructure/ui-checkbox/lib/Checkbox/CheckboxFacade
  • @instructure/ui-checkbox/lib/Checkbox/CheckboxFacade/index.js
  • @instructure/ui-checkbox/lib/Checkbox/ToggleFacade
  • @instructure/ui-checkbox/lib/Checkbox/ToggleFacade/index.js
  • @instructure/ui-checkbox/lib/Checkbox/index.js
  • @instructure/ui-checkbox/lib/CheckboxGroup
  • @instructure/ui-checkbox/lib/CheckboxGroup/index.js
  • @instructure/ui-checkbox/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-checkbox) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


category: packages

ui-checkbox

npm MIT License Code of Conduct

A styled HTML input type="checkbox" component.

Components

The ui-checkbox package contains the following:

Installation

npm install @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" />
}