mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 13:59:11 +08:00
7f2f814279
* Revert "fix switch ios chrome animation (#24122)"
This reverts commit fd7c942403
.
* update snapshot
585 B
585 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,
);