UNPKG

@trussworks/react-uswds

Version:
14 lines (13 loc) 476 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; } & JSX.IntrinsicElements['input']; export declare const RangeInput: ({ className, inputRef, textPreposition, textUnit, ...inputProps }: RangeInputProps) => JSX.Element; export default RangeInput;