UNPKG

cookie12-test-ui

Version:

React component library

18 lines (17 loc) 539 B
import React from 'react'; import './TextArea.scss'; interface TextAreaProps { characterMax?: number; disabled?: boolean; htmlFor: string; information?: boolean | string; inputName?: string; label: string; notificationState?: null | 'success' | 'error' | 'warning'; notificationMessage?: null | string; onInputChange?: (e: React.ChangeEvent<HTMLTextAreaElement>) => void; placeholder: string; value?: string; } export declare const TextArea: React.FC<TextAreaProps>; export {};