mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
23 lines
405 B
TypeScript
23 lines
405 B
TypeScript
|
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;
|