UNPKG

@trussworks/react-uswds

Version:
15 lines (14 loc) 525 B
import { JSX } from 'react'; import { LegacyInputRef } from '../../../types/legacyInputRef'; export type RangeInputProps = { id: string; name: string; min?: number; max?: number; textPreposition?: string; textUnit?: string; inputRef?: LegacyInputRef; wrapperClassName?: string; } & JSX.IntrinsicElements['input']; export declare const RangeInput: ({ className, wrapperClassName, inputRef, textPreposition, textUnit, ...inputProps }: RangeInputProps) => JSX.Element; export default RangeInput;