quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
17 lines (16 loc) • 701 B
TypeScript
/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { INPUT_OPTION } from './options';
export interface IInputNumberProps extends InputType, WidthType, MarginType {
value?: number;
min?: number;
max?: number;
step?: number;
size?: keyof typeof INPUT_OPTION;
handleValue?: (value?: number | undefined) => void;
onClickMinus?: (value?: number) => void;
onClickPlus?: (value?: number) => void;
}
declare const InputNumber: import("react").ForwardRefExoticComponent<IInputNumberProps & import("react").RefAttributes<HTMLInputElement>>;
export default InputNumber;