@metamask/design-system-react
Version:
Design system react ui components
48 lines • 2.37 kB
text/typescript
import React from "react";
import { AvatarGroupSize, AvatarGroupVariant } from "../../types/index.mjs";
import type { AvatarAccountProps } from "../AvatarAccount/index.mjs";
import type { AvatarFaviconProps } from "../AvatarFavicon/index.mjs";
import type { AvatarNetworkProps } from "../AvatarNetwork/index.mjs";
import type { AvatarTokenProps } from "../AvatarToken/index.mjs";
export declare const AvatarGroup: React.ForwardRefExoticComponent<(Omit<{
size?: AvatarGroupSize | undefined;
max?: number | undefined;
isReverse?: boolean | undefined;
overflowTextProps?: import("../AvatarBase/index.mjs").AvatarBaseProps | undefined;
className?: string | undefined;
style?: React.CSSProperties | undefined;
} & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
variant: AvatarGroupVariant.Account;
avatarPropsArr: AvatarAccountProps[];
}, "ref"> | Omit<{
size?: AvatarGroupSize | undefined;
max?: number | undefined;
isReverse?: boolean | undefined;
overflowTextProps?: import("../AvatarBase/index.mjs").AvatarBaseProps | undefined;
className?: string | undefined;
style?: React.CSSProperties | undefined;
} & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
variant: AvatarGroupVariant.Favicon;
avatarPropsArr: AvatarFaviconProps[];
}, "ref"> | Omit<{
size?: AvatarGroupSize | undefined;
max?: number | undefined;
isReverse?: boolean | undefined;
overflowTextProps?: import("../AvatarBase/index.mjs").AvatarBaseProps | undefined;
className?: string | undefined;
style?: React.CSSProperties | undefined;
} & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
variant: AvatarGroupVariant.Network;
avatarPropsArr: AvatarNetworkProps[];
}, "ref"> | Omit<{
size?: AvatarGroupSize | undefined;
max?: number | undefined;
isReverse?: boolean | undefined;
overflowTextProps?: import("../AvatarBase/index.mjs").AvatarBaseProps | undefined;
className?: string | undefined;
style?: React.CSSProperties | undefined;
} & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
variant: AvatarGroupVariant.Token;
avatarPropsArr: AvatarTokenProps[];
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=AvatarGroup.d.mts.map