mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
16 lines
335 B
TypeScript
16 lines
335 B
TypeScript
|
import React from 'react';
|
||
|
import { Avatar, Badge } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Badge count={5} title="Custom hover text">
|
||
|
<Avatar shape="square" size="large" />
|
||
|
</Badge>
|
||
|
<Badge count={-5} title="Negative">
|
||
|
<Avatar shape="square" size="large" />
|
||
|
</Badge>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|