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.

18 lines
371 B

# 文字和图标
- order: 2
带有文字和图标。
---
````jsx
import { Switch, Icon } from 'antd';
9 years ago
ReactDOM.render(<div>
<Switch checkedChildren="开" unCheckedChildren="关" />
<span> </span>
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
</div>, document.getElementById('components-switch-demo-text'));
````