quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
14 lines (13 loc) • 702 B
TypeScript
/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { INPUT_OPTION } from './options';
export interface IInputProps extends InputType, WidthType, MarginType {
type?: 'text' | 'password' | 'email';
size?: keyof typeof INPUT_OPTION;
handleValue?: (value: string) => void;
}
declare const _default: import("react").ForwardRefExoticComponent<IInputProps & import("react").RefAttributes<HTMLInputElement>> & {
Number: import("react").ForwardRefExoticComponent<import("./InputNumber").IInputNumberProps & import("react").RefAttributes<HTMLInputElement>>;
};
export default _default;