ant-design/components/input/demo/size.md
Amumu 02a71d0ddd
fix: form item Input size error with prefix or suffix (#21290)
* fix form item Input size error with prefix and suffix

* snapshot

* add test case

* revert width
2020-02-09 11:57:42 +08:00

850 B

order title
1
zh-CN en-US
三种大小 Three sizes of Input

zh-CN

我们为 <Input /> 输入框定义了三种尺寸(大、默认、小),高度分别为 40px32px24px

en-US

There are three sizes of an Input box: large (40px), default (32px) and small (24px).

import { Input } from 'antd';
import { UserOutlined } from '@ant-design/icons';

ReactDOM.render(
  <div className="example-input">
    <Input size="large" placeholder="large size" prefix={<UserOutlined />} />
    <Input placeholder="default size" prefix={<UserOutlined />} />
    <Input size="small" placeholder="small size" prefix={<UserOutlined />} />
    <Input.Password size="large" placeholder="large Password" />
  </div>,
  mountNode,
);
.example-input > span {
  width: 200px;
  margin: 0 8px 8px 0;
}