react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
11 lines • 315 B
JavaScript
import { withHOCConstructor } from '../../../lib/compose';
import { withAutoResize } from '../Textarea.hocs/withAutoResize';
/**
* Modifier for auto resize
*/
export var withModTextareaAutoResize = withHOCConstructor({
matchProps: {
autoResize: true
},
matchOnlyProps: ['autoResize']
}, withAutoResize);