JSPM

@instructure/ui-checkbox

8.14.1-snapshot.37+4b9816103
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17229
  • Score
    100M100P100Q144308F
  • License MIT

styled HTML input type='checkbox' component.

Package Exports

  • @instructure/ui-checkbox
  • @instructure/ui-checkbox/es/Checkbox/CheckboxLocator
  • @instructure/ui-checkbox/es/Checkbox/CheckboxLocator.js
  • @instructure/ui-checkbox/es/CheckboxGroup/CheckboxGroupLocator
  • @instructure/ui-checkbox/es/CheckboxGroup/CheckboxGroupLocator.js
  • @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

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" />
}