ant-design-vue/types/avatar.d.ts

55 lines
1.3 KiB
TypeScript
Raw Normal View History

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
2020-08-17 05:53:47 +00:00
import { VNodeChild } from 'vue';
2020-08-31 06:59:56 +00:00
import { AntdComponent, AntdProps } from './component';
export declare class Avatar extends AntdComponent {
2020-08-31 06:59:56 +00:00
$props: AntdProps & {
2020-08-17 05:53:47 +00:00
/**
* the Icon type for an icon avatar, see Icon Component
* @type any (VNode | slot)
*/
icon?: VNodeChild | JSX.Element;
/**
* the shape of avatar
* @default 'circle'
* @type string
*/
shape?: 'circle' | 'square';
/**
* the size of the avatar
* @default 'default'
* @type number | string
*/
size?: 'small' | 'large' | 'default' | number;
/**
* the address of the image for an image avatar
* @type string
*/
src?: string;
/**
* a list of sources to use for different screen resolutions
* @type string
*/
srcSet?: string;
/**
* This attribute defines the alternative text describing the image
* @type string
*/
alt?: string;
/**
* handler when img load errorreturn false to prevent default fallback behavior
* @type
*/
loadError?: () => boolean;
};
}