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.
|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title:
|
|
|
|
zh-CN: 文字和图标
|
|
|
|
en-US: Text & icon
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
带有文字和图标。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
With text and icon.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Switch, Icon } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Switch checkedChildren="开" unCheckedChildren="关" defaultChecked />
|
|
|
|
<br />
|
|
|
|
<Switch checkedChildren="1" unCheckedChildren="0" />
|
|
|
|
<br />
|
|
|
|
<Switch
|
|
|
|
checkedChildren={<Icon type="check" />}
|
|
|
|
unCheckedChildren={<Icon type="close" />}
|
|
|
|
defaultChecked
|
|
|
|
/>
|
|
|
|
</div>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|