@brizy/ui
Version:
React elements in Brizy style
7 lines (6 loc) • 424 B
JavaScript
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));
};