jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Avatar/props.d.ts

26 lines
702 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
import { IBaseProps } from '../_base';
/**
* @description
*/
export interface IAvatarProps extends IBaseProps {
/**
* @description x-small(80*80) small(88*88) medium(104*104) large(120*120)
* @default "medium"
*/
size?: 'x-small' | 'small' | 'medium' | 'large';
/**
* @description
*/
src?: string;
/**
* @description
*/
name?: string;
/**
* @description name size=x-small
*/
desc?: string;
}
export declare const AvatarDefaultProps: Partial<IAvatarProps>;