quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
10 lines (9 loc) • 448 B
TypeScript
import React from 'react';
import { MarginType } from '../../../types/styleType';
import { AVATAR_OPTION, AVATAR_STATUS } from './options';
export interface IAvatarProps extends React.ImgHTMLAttributes<HTMLImageElement>, MarginType {
size?: keyof typeof AVATAR_OPTION;
status?: keyof typeof AVATAR_STATUS;
}
declare const Avatar: React.ForwardRefExoticComponent<IAvatarProps & React.RefAttributes<HTMLImageElement>>;
export default Avatar;