@trussworks/react-uswds
Version:
React USWDS 3.0 component library
13 lines (12 loc) • 520 B
TypeScript
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;