mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-21 13:18:04 +08:00
7f2f814279
* Revert "fix switch ios chrome animation (#24122)"
This reverts commit fd7c942403
.
* update snapshot
35 lines
585 B
Markdown
35 lines
585 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 文字和图标
|
|
en-US: Text & icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
带有文字和图标。
|
|
|
|
## en-US
|
|
|
|
With text and icon.
|
|
|
|
```jsx
|
|
import { Switch } from 'antd';
|
|
import { CloseOutlined, CheckOutlined } from '@ant-design/icons';
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<Switch checkedChildren="开启" unCheckedChildren="关闭" defaultChecked />
|
|
<br />
|
|
<Switch checkedChildren="1" unCheckedChildren="0" />
|
|
<br />
|
|
<Switch
|
|
checkedChildren={<CheckOutlined />}
|
|
unCheckedChildren={<CloseOutlined />}
|
|
defaultChecked
|
|
/>
|
|
</div>,
|
|
mountNode,
|
|
);
|
|
```
|