mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
19 lines
344 B
TypeScript
19 lines
344 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',
|
|
},
|
|
);
|