UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

31 lines (24 loc) 685 B
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export interface AvatarGroupProps {} export interface AvatarGroupSlots {} export declare type AvatarGroupEmits = {}; declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {} declare module '@vue/runtime-core' { interface GlobalComponents { AvatarGroup: GlobalComponentConstructor<AvatarGroup>; } } /** * * A set of Avatars can be displayed together using the AvatarGroup component. * * Helper Components: * * - Avatar * * Demos: * * - [AvatarGroup](https://www.primefaces.org/primevue/avatar) * */ export default AvatarGroup;