You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

419 B

order title
7 [{zh-CN 大小} {en-US Size}]

zh-CN

可以设置有数字徽标的大小。

en-US

Set size of numeral Badge.

import { Badge, Avatar } from 'antd';

export default () => (
  <>
    <Badge size="default" count={5}>
      <Avatar shape="square" size="large" />
    </Badge>
    <Badge size="small" count={5}>
      <Avatar shape="square" size="large" />
    </Badge>
  </>
);