UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

11 lines (10 loc) 368 B
import { ForwardRefExoticComponent } from 'react'; import { InputProps } from './input'; import TextArea from './textarea'; import './styles/index.scss'; interface InputComponent extends ForwardRefExoticComponent<InputProps> { TextArea: typeof TextArea; } declare const ExpandedInput: InputComponent; export { InputProps, TextArea }; export default ExpandedInput;