mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
e7aa014c31
* docs: init * chore: all types * docs: faq * chore: fix lint
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { Button, Modal, Space, Typography } from 'antd';
|
|
import type { ModalFuncProps } from 'antd';
|
|
|
|
/** Test usage. Do not use in your production. */
|
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalPanel } = Modal;
|
|
|
|
const customFooterFn: ModalFuncProps['footer'] = (originNode, { OkBtn, CancelBtn }) => (
|
|
<Space direction="vertical">
|
|
<Space>{originNode}</Space>
|
|
<Space>
|
|
<CancelBtn />
|
|
<Button danger type="primary">
|
|
Custom
|
|
</Button>
|
|
<OkBtn />
|
|
</Space>
|
|
</Space>
|
|
);
|
|
|
|
export default () => (
|
|
<div style={{ display: 'flex', flexDirection: 'column', rowGap: 16 }}>
|
|
<InternalPanel title="Hello World!" style={{ width: '100%', height: 200 }}>
|
|
Hello World?!
|
|
</InternalPanel>
|
|
<InternalPanel type="success" style={{ width: 200, height: 150 }}>
|
|
A good news!
|
|
</InternalPanel>
|
|
<InternalPanel title="Confirm This?" type="confirm" style={{ width: 300, height: 200 }}>
|
|
Some descriptions.
|
|
</InternalPanel>
|
|
|
|
<InternalPanel
|
|
title="Custom Footer Render"
|
|
style={{ width: 380, height: 200 }}
|
|
footer={customFooterFn}
|
|
>
|
|
<Typography.Paragraph>
|
|
<Typography.Link href="https://github.com/ant-design/ant-design/pull/44318">
|
|
Feature #44318
|
|
</Typography.Link>
|
|
</Typography.Paragraph>
|
|
</InternalPanel>
|
|
</div>
|
|
);
|