UNPKG

@memori.ai/memori-react

Version:

[![npm version](https://img.shields.io/github/package-json/v/memori-ai/memori-react)](https://www.npmjs.com/package/@memori.ai/memori-react) ![Tests](https://github.com/memori-ai/memori-react/workflows/CI/badge.svg?branch=main) ![TypeScript Support](https

12 lines (11 loc) 373 B
import React from 'react'; export interface Props { disabled?: boolean; value: string; onChange: (value: string) => void; onPressEnter?: (e: React.KeyboardEvent<HTMLTextAreaElement>) => void; onFocus?: (e: React.FocusEvent) => void; onBlur?: (e: React.FocusEvent) => void; } declare const ChatTextArea: React.FC<Props>; export default ChatTextArea;