ant-design/components/badge/demo/dot.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

445 B

讨嫌的小红点

  • order: 3

没有具体的数字。


import { Badge, Icon } from 'antd';

ReactDOM.render(<div>
  <Badge dot={true}>
    <Icon type="notification" />
  </Badge>
  <Badge dot={true}>
    <a href="#">一个链接</a>
  </Badge>
</div>, document.getElementById('components-badge-demo-dot'));