mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import React from 'react';
|
|
import { DownloadOutlined } from '@ant-design/icons';
|
|
import { Button, Form } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Form>
|
|
<Form.Item>
|
|
<Button size="large" shape="round" block style={{ marginBottom: 12 }}>
|
|
Submit
|
|
</Button>
|
|
<Button size="large" shape="round" icon={<DownloadOutlined />} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
|
|
export default App;
|