@fesjs/fes-design
Version:
fes-design for PC
33 lines (32 loc) • 894 B
TypeScript
import type { PropType } from 'vue';
import type { Shape, Size } from '../avatar/props';
import type { ExtractPublicPropTypes } from '../_util/interface';
type AvatarOption = {
name: string;
src: string;
text: string;
icon: string;
};
export declare const avatarGroupProps: {
readonly size: {
readonly type: PropType<Size>;
readonly default: "middle";
};
readonly shape: {
readonly type: PropType<Shape>;
readonly default: "circle";
};
readonly max: {
readonly type: NumberConstructor;
readonly default: 3;
};
readonly options: {
readonly type: PropType<Partial<AvatarOption>[]>;
};
readonly expandOnHover: {
readonly type: BooleanConstructor;
readonly default: false;
};
};
export type AvatarGroupProps = ExtractPublicPropTypes<typeof avatarGroupProps>;
export {};