ant-design/components/input/demo/presuffix.md

31 lines
550 B
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 前缀和后缀
en-US: prefix and suffix
---
## zh-CN
在输入框上添加前缀或后缀图标。
## en-US
Add prefix or suffix icons inside input.
2017-02-13 10:55:53 +08:00
````jsx
2019-03-26 22:27:46 +08:00
import { Input, Tooltip, Icon } from 'antd';
ReactDOM.render(
<Input
placeholder="Enter your username"
prefix={<Icon type="user" style={{ color: 'rgba(0,0,0,.25)' }} />}
suffix={
<Tooltip title="Extra information">
<Icon type="info-circle" style={{ color: 'rgba(0,0,0,.45)' }} />
</Tooltip>
}
/>
, mountNode);
````