mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
19 lines
424 B
Markdown
19 lines
424 B
Markdown
|
# 文字和图标
|
||
|
|
||
|
- order: 2
|
||
|
|
||
|
带有文字和图标。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Switch = antd.Switch;
|
||
|
var container = document.getElementById('components-switch-demo-text');
|
||
|
|
||
|
React.render(<div>
|
||
|
<Switch checkedChildren="开" unCheckedChildren="关" />
|
||
|
<span> </span>
|
||
|
<Switch checkedChildren={<i className="anticon anticon-check"></i>} unCheckedChildren={<i className="anticon anticon-cross"></i>} />
|
||
|
</div>, container);
|
||
|
````
|