@volverjs/ui-vue
Version:
@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.
29 lines (28 loc) • 604 B
TypeScript
export type AvatarItem = {
key?: string;
text?: string;
imgSrc?: string;
modifiers?: string | string[];
};
export declare const VvAvatarGroupProps: {
/**
* avatar items
*/
items: {
type: PropType<AvatarItem[]>;
default: () => never[];
required: boolean;
};
toShow: {
type: NumberConstructor;
default: number;
};
totalItems: {
type: NumberConstructor;
};
avatarModifiers: PropType<string | string[]>;
modifiers: {
type: PropType<string | string[]>;
default: undefined;
};
};