ant-design/components/switch/demo/text.md
2016-07-26 09:17:46 +08:00

24 lines
385 B
Markdown

---
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="关" />
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
</div>, mountNode);
````