mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
be2b0d8a6e
* docs(badge): replace class component with hooks * docs(button): replace class component with hooks * docs(calendar): replace class component with hooks * docs(card): replace class component with hooks * docs(button): replace class component with hooks * chore(deps): remove webpack devDependencies * docs(cascader): replace class component with hooks * docs(checkbox): replace class component with hooks * docs(collapse): replace class component with hooks * docs(comment): replace class component with hooks * docs(descriptions): replace class component with hooks * docs(config-provider): replace class component with hooks * docs(date-picker): replace class component with hooks
43 lines
972 B
Markdown
43 lines
972 B
Markdown
---
|
|
order: 11
|
|
title:
|
|
zh-CN: 三种大小
|
|
en-US: Three Sizes
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
三种大小的输入框,若不设置,则为 `default`。
|
|
|
|
## en-US
|
|
|
|
The input box comes in three sizes. `default` will be used if `size` is omitted.
|
|
|
|
```jsx
|
|
import { DatePicker, Radio, Space } from 'antd';
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
export default () => {
|
|
const [size, setSize] = React.useState('default');
|
|
|
|
const handleSizeChange = e => {
|
|
setSize(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<Space direction="vertical" size={12}>
|
|
<Radio.Group value={size} onChange={handleSizeChange}>
|
|
<Radio.Button value="large">Large</Radio.Button>
|
|
<Radio.Button value="default">Default</Radio.Button>
|
|
<Radio.Button value="small">Small</Radio.Button>
|
|
</Radio.Group>
|
|
<DatePicker size={size} />
|
|
<DatePicker size={size} picker="month" />
|
|
<RangePicker size={size} />
|
|
<DatePicker size={size} picker="week" />
|
|
</Space>
|
|
);
|
|
};
|
|
```
|