mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-24 12:16:21 +10:00
385 B
385 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 2 |
|
zh-CN
带有文字和图标。
en-US
With text and icon.
import { Switch, Icon } from 'antd';
ReactDOM.render(<div>
<Switch checkedChildren="开" unCheckedChildren="关" />
<Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
</div>, mountNode);