ant-design/components/badge/demo/no-wrapper.md

41 lines
844 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-12-20 11:06:40 +08:00
order: 1
title:
zh-CN: 独立使用
en-US: Standalone
2016-03-31 09:40:55 +08:00
---
## zh-CN
不包裹任何元素即是独立使用,可自定样式展现。
> 在右上角的 badge 则限定为红色。
## en-US
Used in standalone when children is empty.
2019-05-07 14:57:32 +08:00
```jsx
import { Badge, Space, Switch } from 'antd';
2021-01-28 18:16:05 +08:00
import { ClockCircleOutlined } from '@ant-design/icons';
const Demo = () => {
const [show, setShow] = React.useState(true);
return (
<Space>
<Switch checked={show} onChange={() => setShow(!show)} />
<Badge count={show ? 25 : 0} />
2021-01-28 18:16:05 +08:00
<Badge count={show ? <ClockCircleOutlined style={{ color: '#f5222d' }} /> : 0} />
<Badge
className="site-badge-count-109"
count={show ? 109 : 0}
style={{ backgroundColor: '#52c41a' }}
/>
</Space>
);
};
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```