amotify
Version:
UI Component for React,NextJS,esbuild
18 lines (17 loc) • 666 B
TypeScript
/// <reference types="react" />
import { ReactElement } from '../../@declares';
import { InputTypes } from '.';
declare namespace Contenteditable {
type Input = InputTypes.CoreInput<string> & React.TextareaHTMLAttributes<HTMLDivElement> & {
tone?: InputTypes.BoxTone;
tabIndex?: number;
id?: string;
children?: ReactElement;
leftIndicator?: ReactElement | false;
rightIndicator?: ReactElement | false;
leftIcon?: ReactElement | false;
rightIcon?: ReactElement | false;
};
}
declare const Contenteditable: React.FC<Contenteditable.Input>;
export { Contenteditable, Contenteditable as default };