quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
14 lines (13 loc) • 617 B
TypeScript
import { BUTTON_OPTION, BUTTON_ICON_OPTION } from './options';
import { MarginType, WidthType } from '../../../types/styleType';
type ButtonStyleType = WidthType & MarginType & {
size: keyof typeof BUTTON_OPTION;
isLine?: boolean;
};
type IconButtonStyleType = MarginType & {
size: keyof typeof BUTTON_ICON_OPTION;
dot?: boolean;
};
export declare const ButtonStyle: ({ size, isLine, ...props }: ButtonStyleType) => import("@emotion/utils").SerializedStyles;
export declare const ButtonIconStyle: ({ size, dot, ...props }: IconButtonStyleType) => import("@emotion/utils").SerializedStyles;
export {};