You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
596 B
25 lines
596 B
2 years ago
|
import React from 'react';
|
||
|
import { SettingOutlined } from '@ant-design/icons';
|
||
|
import { Input, Space, Button } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Space direction="vertical">
|
||
|
Input addon Button:
|
||
|
<Input addonAfter={<Button type="primary">Submit</Button>} defaultValue="mysite" />
|
||
|
<Input addonAfter={<Button>Submit</Button>} defaultValue="mysite" />
|
||
|
<br />
|
||
|
<br />
|
||
|
Input addon Button icon:
|
||
|
<Input
|
||
|
addonAfter={
|
||
|
<Button>
|
||
|
<SettingOutlined />
|
||
|
</Button>
|
||
|
}
|
||
|
defaultValue="mysite"
|
||
|
/>
|
||
|
</Space>
|
||
|
);
|
||
|
|
||
|
export default App;
|