quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
9 lines (8 loc) • 357 B
TypeScript
import { AVATAR_OPTION, AVATAR_STATUS } from './options';
import { MarginType } from '../../../types/styleType';
type StyleType = {
size: keyof typeof AVATAR_OPTION;
status: keyof typeof AVATAR_STATUS;
} & MarginType;
export declare const AvatarStyle: ({ size, status, ...props }: StyleType) => import("@emotion/utils").SerializedStyles;
export {};