mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
18 lines
343 B
TypeScript
18 lines
343 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('avatar');
|
|
|
|
rootPropsTest(
|
|
'avatar',
|
|
(Avatar, props) => (
|
|
<Avatar.Group {...props} maxCount={1}>
|
|
<Avatar>Bamboo</Avatar>
|
|
<Avatar>Light</Avatar>
|
|
</Avatar.Group>
|
|
),
|
|
{
|
|
name: 'Avatar.Group',
|
|
},
|
|
);
|