mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-01 22:24:25 +08:00
753c01ae18
fix antd.notification
19 lines
400 B
Markdown
19 lines
400 B
Markdown
# 文字和图标
|
|
|
|
- order: 2
|
|
|
|
带有文字和图标。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Switch, Icon } from 'antd';
|
|
const container = document.getElementById('components-switch-demo-text');
|
|
|
|
ReactDOM.render(<div>
|
|
<Switch checkedChildren="开" unCheckedChildren="关" />
|
|
<span> </span>
|
|
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
|
|
</div>, container);
|
|
````
|