antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
17 lines (16 loc) • 486 B
JavaScript
"use client";
import Group from './Group';
import InternalInput from './Input';
import OTP from './OTP';
import Password from './Password';
import Search from './Search';
import TextArea from './TextArea';
import InputWithSearchSuffix from './InputWithSearchSuffix';
const Input = InternalInput;
Input.Group = Group;
Input.Search = Search;
Input.TextArea = TextArea;
Input.Password = Password;
Input.OTP = OTP;
Input.InputWithSearchSuffix = InputWithSearchSuffix;
export default Input;