UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

13 lines (12 loc) 371 B
import { ReactNode } from "react"; import { AvatarShape, AvatarSpacing } from "./avatar.shared"; interface AvatarGroupProps { children: ReactNode[]; shape?: AvatarShape; spacing?: AvatarSpacing; limit?: number; total?: number; className?: string; } export default function AvatarGroup(props: AvatarGroupProps): JSX.Element; export {};