mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
29 lines
592 B
TypeScript
29 lines
592 B
TypeScript
import React from 'react';
|
|
import { SmileOutlined } from '@ant-design/icons';
|
|
import { Alert, ConfigProvider } from 'antd';
|
|
|
|
const icon = <SmileOutlined />;
|
|
|
|
const App: React.FC = () => (
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
Alert: {
|
|
withDescriptionIconSize: 32,
|
|
withDescriptionPadding: 16,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Alert
|
|
icon={icon}
|
|
message="Success Tips"
|
|
description="Detailed description and advices about successful copywriting."
|
|
type="success"
|
|
showIcon
|
|
/>
|
|
</ConfigProvider>
|
|
);
|
|
|
|
export default App;
|