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.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Switch } from 'antd';
|
|
|
|
import { Close, Check } from '@ant-design/icons';
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
2017-12-06 20:20:32 +08:00
|
|
|
<Switch checkedChildren="开" unCheckedChildren="关" defaultChecked />
|
2017-10-09 13:23:20 +08:00
|
|
|
<br />
|
|
|
|
<Switch checkedChildren="1" unCheckedChildren="0" />
|
|
|
|
<br />
|
2019-08-13 14:07:17 +08:00
|
|
|
<Switch checkedChildren={<Check />} unCheckedChildren={<Close />} defaultChecked />
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|