@trussworks/react-uswds
Version:
React USWDS 3.0 component library
9 lines (8 loc) • 379 B
TypeScript
import { default as React } from 'react';
import { TextInputProps } from '../TextInput/TextInput';
export type AllProps = TextInputProps & {
mask: string;
charset?: string;
};
export declare const TextInputMask: ({ id, className, mask, value: externalValue, defaultValue, charset, onChange, ...inputProps }: AllProps) => React.ReactElement;
export default TextInputMask;