mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
34af3ec550
* feat: component token naming rules * dcos: update * feat: modal token rename * feat: rename result token * feat: statsitic token rename * feat: steps token remane * chore: update snapshot * chore: fix lint * feat: semantic part component * revert: button & notification * revert: files * chore: code clean
32 lines
746 B
TypeScript
32 lines
746 B
TypeScript
import React from 'react';
|
|
import { Button, ConfigProvider, Result } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
Result: {
|
|
titleFontSize: 18,
|
|
subtitleFontSize: 14,
|
|
iconFontSize: 48,
|
|
extraMargin: `12px 0 0 0`,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Result
|
|
status="success"
|
|
title="Successfully Purchased Cloud Server ECS!"
|
|
subTitle="Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait."
|
|
extra={[
|
|
<Button type="primary" key="console">
|
|
Go Console
|
|
</Button>,
|
|
<Button key="buy">Buy Again</Button>,
|
|
]}
|
|
/>
|
|
</ConfigProvider>
|
|
);
|
|
|
|
export default App;
|