You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
653 B
33 lines
653 B
2 years ago
|
import React from 'react';
|
||
|
import { LoadingOutlined, SmileOutlined, SolutionOutlined, UserOutlined } from '@ant-design/icons';
|
||
|
import { Steps } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Steps
|
||
|
items={[
|
||
|
{
|
||
|
title: 'Login',
|
||
|
status: 'finish',
|
||
|
icon: <UserOutlined />,
|
||
|
},
|
||
|
{
|
||
|
title: 'Verification',
|
||
|
status: 'finish',
|
||
|
icon: <SolutionOutlined />,
|
||
|
},
|
||
|
{
|
||
|
title: 'Pay',
|
||
|
status: 'process',
|
||
|
icon: <LoadingOutlined />,
|
||
|
},
|
||
|
{
|
||
|
title: 'Done',
|
||
|
status: 'wait',
|
||
|
icon: <SmileOutlined />,
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|