0.1.1 • Published 4 years ago

@rock-kit/ui-range-input v0.1.1

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

Usage

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

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