ant-design/components/switch/demo/text.md

24 lines
385 B
Markdown
Raw Normal View History

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.
2015-07-13 16:51:56 +08:00
````jsx
import { Switch, Icon } from 'antd';
2015-07-13 16:51:56 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(<div>
2015-07-13 16:51:56 +08:00
<Switch checkedChildren="开" unCheckedChildren="关" />
2015-10-02 16:25:10 +08:00
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
</div>, mountNode);
2015-07-13 16:51:56 +08:00
````