mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
647a03af09
* test(badge): add case * fix(badge): fix the color cannot be customized when count is 0 * test(badge): update snapshots * docs(badge): update demo * test: update case * test(badge): update snapshots
933 B
933 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
不包裹任何元素即是独立使用,可自定样式展现。
在右上角的 badge 则限定为红色。
en-US
Used in standalone when children is empty.
import { ClockCircleOutlined } from '@ant-design/icons';
import { Badge, Space, Switch } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [show, setShow] = useState(true);
return (
<Space>
<Switch checked={show} onChange={() => setShow(!show)} />
<Badge count={show ? 11 : 0} showZero color="#faad14" />
<Badge count={show ? 25 : 0} />
<Badge count={show ? <ClockCircleOutlined style={{ color: '#f5222d' }} /> : 0} />
<Badge
className="site-badge-count-109"
count={show ? 109 : 0}
style={{ backgroundColor: '#52c41a' }}
/>
</Space>
);
};
export default App;