You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
613 B
26 lines
613 B
2 years ago
|
import React from 'react';
|
||
|
import { InfoCircleOutlined, UserOutlined } from '@ant-design/icons';
|
||
|
import { Input, Tooltip } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Input
|
||
|
placeholder="Enter your username"
|
||
|
prefix={<UserOutlined className="site-form-item-icon" />}
|
||
|
suffix={
|
||
|
<Tooltip title="Extra information">
|
||
|
<InfoCircleOutlined style={{ color: 'rgba(0,0,0,.45)' }} />
|
||
|
</Tooltip>
|
||
|
}
|
||
|
/>
|
||
|
<br />
|
||
|
<br />
|
||
|
<Input prefix="¥" suffix="RMB" />
|
||
|
<br />
|
||
|
<br />
|
||
|
<Input prefix="¥" suffix="RMB" disabled />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|