You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
19 lines
424 B
10 years ago
|
# 文字和图标
|
||
|
|
||
|
- 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);
|
||
|
````
|