99.10.0 • Published 4 years ago

@temporg/ui-range-input v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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 @temporg/ui-range-input

Usage

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

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