mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
67165a78fc
* docs: live demo * chore: bump dumi * chore: fix lint * chore: fix lint * chore: update demo * chore: bump dumi * docs: enhance live demo * docs: update text
27 lines
429 B
TypeScript
27 lines
429 B
TypeScript
/**
|
|
* live: false
|
|
*/
|
|
|
|
import React from 'react';
|
|
import {
|
|
HomeOutlined,
|
|
LoadingOutlined,
|
|
SettingFilled,
|
|
SmileOutlined,
|
|
SyncOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Space } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Space>
|
|
<HomeOutlined />
|
|
<SettingFilled />
|
|
<SmileOutlined />
|
|
<SyncOutlined spin />
|
|
<SmileOutlined rotate={180} />
|
|
<LoadingOutlined />
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|