ant-design/components/time-picker/demo/size.md

29 lines
609 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
2016-07-26 11:03:44 +08:00
zh-CN: 三种大小
2016-11-11 16:06:11 +08:00
en-US: Three Sizes
2016-03-31 09:40:55 +08:00
---
2016-07-26 11:03:44 +08:00
## zh-CN
三种大小的输入框,大的用在表单中,中的为默认。
2016-07-26 11:03:44 +08:00
## en-US
The input box comes in three sizes. large is used in the form, while the medium size is the default.
2019-05-07 14:57:32 +08:00
```jsx
import { TimePicker } from 'antd';
import moment from 'moment';
ReactDOM.render(
<div>
<TimePicker defaultValue={moment('12:08:23', 'HH:mm:ss')} size="large" />
<TimePicker defaultValue={moment('12:08:23', 'HH:mm:ss')} />
<TimePicker defaultValue={moment('12:08:23', 'HH:mm:ss')} size="small" />
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```