constants.d.ts 270 B

1234567
  1. import type { InjectionKey } from 'vue';
  2. import type { AvatarProps } from './avatar';
  3. export interface AvatarGroupContext {
  4. size?: AvatarProps['size'];
  5. shape?: AvatarProps['shape'];
  6. }
  7. export declare const avatarGroupContextKey: InjectionKey<AvatarGroupContext>;