UNPKG

@kitn.ai/ui

Version:

Framework-agnostic, Shadow-DOM web components for building AI chat interfaces — works in React, Vue, Angular, Svelte, or plain HTML. Authored in SolidJS.

7 lines (6 loc) 242 B
import { JSX } from 'solid-js'; export interface TextareaProps extends JSX.TextareaHTMLAttributes<HTMLTextAreaElement> { maxHeight?: number; autoResize?: boolean; } export declare function Textarea(props: TextareaProps): JSX.Element;