ant-design/components/switch/demo/size.md
2016-06-15 14:13:38 +08:00

212 B

order title
3 两种大小

size="small" 表示小号开关。

import { Switch } from 'antd';

ReactDOM.render(
  <div>
    <Switch />
    <Switch size="small" />
  </div>
, mountNode);