reablocks
Version:
Component library for React
10 lines (9 loc) • 364 B
TypeScript
export interface AvatarGroupTheme {
/** CSS class applied to the root avatar group container. */
base: string;
/** CSS class applied to each avatar within the group. */
avatar: string;
/** CSS class applied to the overflow indicator showing remaining avatars. */
overflow: string;
}
export declare const avatarGroupTheme: AvatarGroupTheme;