UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

16 lines 572 B
import { Input as InputComponent } from './input'; import { Password } from './password'; import { Phone } from './phone'; import { TextArea } from './textArea'; import './style.less'; export type { BaseInputProps, InputProps } from './input'; export type { PasswordInputProps } from './password'; export type { PhoneInputProps } from './phone'; export type InputType = typeof InputComponent & { Password: typeof Password; Phone: typeof Phone; TextArea: typeof TextArea; }; declare const Input: InputType; export { Input, }; //# sourceMappingURL=index.d.ts.map