mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
32052bf5d8
* docs: update live demo api with dumi 2.3 beta * docs: lint fix * refactor: update naming of demo source * feat: optimize souce code editor style * chore: update dumi version * chore: restore dumi overrides * ci: setup before lint only for ci * chore: trigger ci re-run * chore: bump dumi version --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: lijianan <574980606@qq.com>
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;
|