2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 2
|
2016-07-26 09:17:46 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 文字和图标
|
|
|
|
en-US: Text & icon
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-13 16:51:56 +08:00
|
|
|
带有文字和图标。
|
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
With text and icon.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Switch, Icon } from 'antd';
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Switch checkedChildren="开" unCheckedChildren="关" />
|
|
|
|
<br />
|
|
|
|
<Switch checkedChildren="1" unCheckedChildren="0" />
|
|
|
|
<br />
|
|
|
|
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
|
|
|
|
</div>
|
|
|
|
, mountNode);
|
2015-07-13 16:51:56 +08:00
|
|
|
````
|