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.
45 lines
1.2 KiB
45 lines
1.2 KiB
import { SearchOutlined } from '@ant-design/icons';
|
|
import { Button, Input, Select, Space } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { Search } = Input;
|
|
|
|
const options = [
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
},
|
|
{
|
|
value: 'jiangsu',
|
|
label: 'Jiangsu',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Space direction="vertical" size="middle">
|
|
<Space.Compact>
|
|
<Input defaultValue="26888888" />
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<Input style={{ width: '20%' }} defaultValue="0571" />
|
|
<Input style={{ width: '80%' }} defaultValue="26888888" />
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<Search addonBefore="https://" placeholder="input search text" allowClear />
|
|
</Space.Compact>
|
|
<Space.Compact style={{ width: '100%' }}>
|
|
<Input defaultValue="Combine input and button" />
|
|
<Button type="primary">Submit</Button>
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<Select defaultValue="Zhejiang" options={options} />
|
|
<Input defaultValue="Xihu District, Hangzhou" />
|
|
</Space.Compact>
|
|
<Space.Compact size="large">
|
|
<Input addonBefore={<SearchOutlined />} placeholder="large size" />
|
|
<Input placeholder="another input" />
|
|
</Space.Compact>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|
|
|