mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
474 B
474 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
可以设置有数字徽标的大小。
en-US
Set size of numeral Badge.
import { Avatar, Badge } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Badge size="default" count={5}>
<Avatar shape="square" size="large" />
</Badge>
<Badge size="small" count={5}>
<Avatar shape="square" size="large" />
</Badge>
</>
);
export default App;