@opentf/react-ta-input
Version:
The Thamizhl (தமிழ்) language scripts input for ReactJS.
20 lines (15 loc) • 590 B
TypeScript
import { HTMLAttributes } from 'react';
import { JSX as JSX_2 } from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { RefObject } from 'react';
declare type Lang = "ta" | "system";
declare type Props = {
children: ReactNode;
inputRef: RefObject<HTMLInputElement | HTMLTextAreaElement>;
onChange: (val: string) => void;
kbd: boolean;
lang: Lang;
otherProps: Partial<HTMLAttributes<HTMLDivElement>>;
};
export declare function TaInput({ children, inputRef, onChange, kbd, lang, ...otherProps }: Props): JSX_2.Element;
export { }