mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
263 B
263 B
两种大小
- order: 3
size="small"
表示小号开关。
import { Switch } from 'antd';
ReactDOM.render(
<div>
<Switch />
<Switch size="small" />
</div>
, document.getElementById('components-switch-demo-size'));