ant-design/components/switch/demo/size.md
2022-05-21 22:14:15 +08:00

392 B

order title
3
zh-CN en-US
两种大小 Two sizes

zh-CN

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

en-US

size="small" represents a small sized switch.

import { Switch } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <>
    <Switch defaultChecked />
    <br />
    <Switch size="small" defaultChecked />
  </>
);

export default App;