@trussworks/react-uswds
Version:
React USWDS 3 component library
15 lines (14 loc) • 525 B
TypeScript
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;