9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
export interface AvatarGroupProps {
|
||
|
style?: object;
|
||
|
className?: string;
|
||
|
}
|
||
|
|
||
|
export declare class AvatarGroup extends React.Component<AvatarGroupProps, any> { }
|