index.js 372 B

123456789101112131415
  1. "use client";
  2. import Group from './Group';
  3. import InternalInput from './Input';
  4. import OTP from './OTP';
  5. import Password from './Password';
  6. import Search from './Search';
  7. import TextArea from './TextArea';
  8. const Input = InternalInput;
  9. Input.Group = Group;
  10. Input.Search = Search;
  11. Input.TextArea = TextArea;
  12. Input.Password = Password;
  13. Input.OTP = OTP;
  14. export default Input;