UNPKG

@brizy/ui

Version:
7 lines (6 loc) 424 B
import AntAvatarGroup from "antd/lib/avatar/group"; import * as React from "react"; export const AvatarGroup = ({ children, style, maxCount = 2, isMaxPopoverBottom = false, maxStyle }) => { const maxPopoverPlacement = isMaxPopoverBottom ? "bottom" : "top"; return (React.createElement(AntAvatarGroup, { style: style, maxCount: maxCount, maxPopoverPlacement: maxPopoverPlacement, maxStyle: maxStyle }, children)); };