ant-design/components/switch/demo/size.md
2016-04-01 10:08:19 +08:00

223 B

order title
3 两种大小

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

import { Switch } from 'antd';

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