mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
955fa520f1
* fix: badge offset in rtl * fix: update snap * add test * fix: offset * fix: snap
551 B
551 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
设置状态点的位置偏移,格式为 [left, top]
,表示状态点距默认位置左侧、上方的偏移量。
en-US
Set offset of the badge dot, the format is [left, top]
, which represents the offset of the status dot from the left and top of the default position.
import { Badge } from 'antd';
ReactDOM.render(
<>
<Badge count={5} offset={[10, 10]}>
<a href="#" className="head-example" />
</Badge>
</>,
mountNode,
);