mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
350 B
350 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
size="small"
表示小号开关。
en-US
size="small"
represents a small sized switch.
import { Switch } from 'antd';
ReactDOM.render(
<div>
<Switch defaultChecked />
<br />
<Switch size="small" defaultChecked />
</div>
, mountNode);