import React from 'react'; | |
import { NotificationOutlined } from '@ant-design/icons'; | |
import { Badge, Space } from 'antd'; | |
const App: React.FC = () => ( | |
<Space> | |
<Badge dot> | |
<NotificationOutlined style={{ fontSize: 16 }} /> | |
</Badge> | |
<Badge dot> | |
<a href="#">Link something</a> | |
</Badge> | |
</Space> | |
); | |
export default App; | |