mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
626 B
626 B
order | title |
---|---|
0 | Input 输入框 |
我们为 <Input />
输入框定义了三种尺寸(大、默认、小),具体使用详见 API。
注意: 在表单里面,我们只使用大尺寸, 即高度为 32px,作为唯一的尺寸。
import { Input } from 'antd';
ReactDOM.render(
<div className="example-input">
<Input size="large" placeholder="大尺寸" />
<Input placeholder="默认尺寸" />
<Input size="small" placeholder="小尺寸" />
</div>
, mountNode);
.example-input .ant-input {
width: 140px;
margin-right: 8px;
}