JSPM

@instructure/ui-range-input

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

A styled HTML range input

Package Exports

  • @instructure/ui-range-input

Readme


category: packages

ui-range-input

npm  build-status  MIT License  Code of Conduct

A styled HTML range input.

Components

The ui-range-input package contains the following:

Installation

yarn add @instructure/ui-range-input

Usage

---
example: false
---
import React from 'react'
import { RangeInput } from '@instructure/ui-range-input'

const MyRange = () => {
  return (
    <RangeInput
      label="Grading range"
      defaultValue={50}
      max={100}
      min={0}
    />
  )
}