@trussworks/react-uswds
Version:
React USWDS 3 component library
14 lines (13 loc) • 476 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;
} & JSX.IntrinsicElements['input'];
export declare const RangeInput: ({ className, inputRef, textPreposition, textUnit, ...inputProps }: RangeInputProps) => JSX.Element;
export default RangeInput;