UNPKG

@carrot-farm/mongsil-ui

Version:
9 lines (8 loc) 435 B
import * as React from 'react'; import { TextareaHTMLAttributes } from 'react'; export interface TextAreaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange'> { className?: string; onChange?: (vlaue?: string, name?: string) => void | false; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLDivElement>>>; export default _default;