payzli-ui-aryan
Version:
A custom react components library
17 lines (16 loc) • 446 B
TypeScript
export interface IAvatarGroup {
children?: any;
className?: string;
max?: number;
onClick?: (event: any) => void;
handleClickMore?: (event: any) => void;
handleAddNew?: (event: any) => void;
size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
showAddIcon?: boolean;
showTooltip?: boolean;
plusIconSize?: string;
plusIconWidth?: string;
plusIconHeight?: string;
ref?: any;
iconClass?: string;
}