UNPKG

quantumai-design-system

Version:

퀀텀에이아이의 디자인 시스템

10 lines (9 loc) 452 B
import { INPUT_OPTION } from './options'; import { MarginType, WidthType } from '../../../types/styleType'; type StyleType = WidthType & MarginType & { size: keyof typeof INPUT_OPTION; disabled?: boolean; }; export declare const InputStyle: ({ size, disabled, ...props }: StyleType) => import("@emotion/utils").SerializedStyles; export declare const InputNumberStyle: (props: StyleType) => import("@emotion/utils").SerializedStyles; export {};