@temporg/ui-range-input
v99.10.0
Published
A styled HTML range input
Downloads
7
Readme
category: packages
ui-range-input
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}
/>
)
}