mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
892 B
892 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
在输入框上添加前缀图标。
en-US
Add a prefix inside input.
import { Form, InputNumber, Tooltip } from 'antd';
import { InfoCircleOutlined, SmileOutlined, UserOutlined } from '@ant-design/icons';
ReactDOM.render(
<>
<InputNumber prefix="¥" style={{ width: '100%' }} />
<br />
<br />
<InputNumber addonBefore={<UserOutlined />} prefix="¥" style={{ width: '100%' }} />
<br />
<br />
<InputNumber prefix="¥" disabled style={{ width: '100%' }} />
<br />
<br />
<Form>
<Form.Item label="Warning" hasFeedback validateStatus="warning">
<InputNumber
style={{ width: '100%' }}
placeholder="Warning"
id="warning"
prefix={<SmileOutlined />}
/>
</Form.Item>
</Form>
</>,
mountNode,
);