@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
13 lines • 610 B
TypeScript
import { InputProps as DefaultInputProps } from 'antd';
import React, { InputHTMLAttributes } from 'react';
import type { InputRef } from 'antd/lib/input';
export declare const INPUT_CLASS_PREFIX = "condo-input";
export type BaseInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'style' | 'size'> & Pick<DefaultInputProps, 'disabled'>;
export type InputProps = BaseInputProps & {
allowClear?: boolean;
suffix?: string;
prefix?: string;
};
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>;
export { Input, };
//# sourceMappingURL=input.d.ts.map