UNPKG

stone-kit

Version:
12 lines (10 loc) 331 B
import { default as React, ReactNode } from 'react'; type textAreaWidth = 'auto' | 'full'; interface TextAreaProps { error?: boolean; children?: ReactNode; width?: textAreaWidth; additionalClass?: string; } export type ComponentProps = TextAreaProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>; export {};