nowt-ui-library
Version:
Nothing unnecessary. Just clean UI.A lightweight and customizable UI component library built for speed and simplicity for React and Next.js.
16 lines (15 loc) • 432 B
TypeScript
import React from 'react';
type Theme = 'light' | 'dark';
interface Props extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
label?: string | null | undefined;
maxLength?: number;
autosize?: boolean;
theme?: Theme;
draftKey?: string;
width?: string | number;
height?: string | number;
emoji?: boolean;
isMic?: boolean;
}
declare const TextArea: React.FC<Props>;
export default TextArea;