mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
80e46b7662
* chore: enable cssVar in imageTest * fix: tree select style * chore: fix avatar group style * fix: cascader panel style * fix: form style * fix: slider disabled style * fix: mentions style * fix: tag style * fix: tabs style * fix: Rate style * fix: table custom token * chore: update snapshot * fix: menu style * fix: InputNumber style * chore: recover image test * chore: add css var image test
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import React from 'react';
|
|
import { DownloadOutlined } from '@ant-design/icons';
|
|
import { Form, Button } 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;
|