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

372 B

order title
4
zh-CN en-US
加载中 Loading

zh-CN

标识开关操作仍在执行中。

en-US

Mark a pending state of switch.

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

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

export default App;