forked from pu428f3pz/InternshipProject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
16 lines
465 B
import * as React from 'react';
|
|
import { AvatarSize } from './SizeContext';
|
|
export interface GroupProps {
|
|
className?: string;
|
|
children?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
maxCount?: number;
|
|
maxStyle?: React.CSSProperties;
|
|
maxPopoverPlacement?: 'top' | 'bottom';
|
|
maxPopoverTrigger?: 'hover' | 'focus' | 'click';
|
|
size?: AvatarSize;
|
|
}
|
|
declare const Group: React.FC<GroupProps>;
|
|
export default Group;
|