mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import Input from './Input';
|
|
import Group from './Group';
|
|
import Search from './Search';
|
|
import TextArea from './TextArea';
|
|
|
|
export { InputProps } from './Input';
|
|
export { GroupProps } from './Group';
|
|
export { SearchProps } from './Search';
|
|
export { TextAreaProps } from './TextArea';
|
|
|
|
Input.Group = Group;
|
|
Input.Search = Search;
|
|
Input.TextArea = TextArea;
|
|
export default Input;
|