mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
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',
|
||
|
},
|
||
|
);
|