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.
12 lines
410 B
12 lines
410 B
import * as React from 'react';
|
|
import { AvatarProps } from './avatar';
|
|
import Group from './group';
|
|
export { AvatarProps } from './avatar';
|
|
export { GroupProps } from './group';
|
|
interface CompoundedComponent extends React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLElement>> {
|
|
Group: typeof Group;
|
|
}
|
|
declare const Avatar: CompoundedComponent;
|
|
export { Group };
|
|
export default Avatar;
|