UNPKG

@trussworks/react-uswds

Version:
13 lines (12 loc) 520 B
import { default as React } from 'react'; type RangeInputProps = { id: string; name: string; min?: number; max?: number; textPreposition?: string; textUnit?: string; inputRef?: string | ((instance: HTMLInputElement | null) => void) | React.RefObject<HTMLInputElement> | null | undefined; }; export declare const RangeInput: ({ className, inputRef, textPreposition, textUnit, ...inputProps }: RangeInputProps & JSX.IntrinsicElements['input']) => React.ReactElement; export default RangeInput;