preeti-to-unicode-input
Version:
An input element or textarea to convert preeti font or nepali font to unicode with language toggle support for Nepali and english typing.
8 lines (7 loc) • 378 B
TypeScript
import React from "react";
interface PreetiToUnicodeInputProps {
inputElement: React.ReactElement<React.InputHTMLAttributes<HTMLInputElement> | React.TextareaHTMLAttributes<HTMLTextAreaElement>>;
enableEnglishLanguageToggle?: boolean;
}
declare const PreetiToUnicodeInput: React.FC<PreetiToUnicodeInputProps>;
export { PreetiToUnicodeInput, PreetiToUnicodeInputProps };