@yandex/ui
Version:
Yandex UI components
8 lines (7 loc) • 394 B
TypeScript
import { ComponentType, ComponentClass } from 'react';
import { ITextareaProps } from '../Textarea';
import './Textarea_autoResize.css';
/**
* Модификатор который увеличивает размер контрола при наборе текста.
*/
export declare function withAutoResize<T extends ITextareaProps>(WrappedComponent: ComponentType<T>): ComponentClass<T>;