UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

42 lines (34 loc) 641 B
--- category: 2 title: 讨嫌的小红点 title_en: Red badge --- zh-CN 没有具体的数字。 en-US This will simply display a red badge, without a specific count. If count equals 0, it won't display the dot. ````jsx import { Badge, Icon } from 'parkball'; ReactDOM.render( <div> <Badge dot> <Icon type="notification" /> </Badge> <Badge count={0} dot> <Icon type="notification" /> </Badge> <Badge dot> <a href="#">Link something</a> </Badge> </div>, mountNode); ```` <style> .anticon-notification { width: 16px; height: 16px; line-height: 16px; font-size: 16px; } </style>