ant-design/components/avatar/__tests__/demo.test.tsx
2023-05-06 15:49:37 +08:00

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',
},
);