mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
64b905e9bd
* update icons deps * update all icon ref * fix lint * update snapshot
579 B
579 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
带有文字和图标。
en-US
With text and icon.
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,
);