UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

11 lines (10 loc) 344 B
import { type ComputedRef, type InjectionKey } from 'vue'; import type { AvatarGroupProps } from '../types'; export declare const avatarGroupInjectionKey: InjectionKey<ComputedRef<{ size: AvatarGroupProps['size']; }>>; export declare function useAvatarGroup(props: { size: AvatarGroupProps['size']; }): { size: ComputedRef<any>; };