cookie-test-app
Version:
testing
18 lines (17 loc) • 539 B
TypeScript
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 {};