11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
|
|
import { AvatarProps } from "./avatar.js";
|
||
|
|
import { InjectionKey } from "vue";
|
||
|
|
|
||
|
|
//#region ../../packages/components/avatar/src/constants.d.ts
|
||
|
|
interface AvatarGroupContext {
|
||
|
|
size?: AvatarProps['size'];
|
||
|
|
shape?: AvatarProps['shape'];
|
||
|
|
}
|
||
|
|
declare const avatarGroupContextKey: InjectionKey<AvatarGroupContext>;
|
||
|
|
//#endregion
|
||
|
|
export { AvatarGroupContext, avatarGroupContextKey };
|