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

34 lines (27 loc) 698 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/showcase/#/avatar) * */ export default AvatarGroup;