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.
28 lines
927 B
28 lines
927 B
import React from 'react';
|
|
import { EyeInvisibleOutlined, EyeTwoTone } from '@ant-design/icons';
|
|
import { Button, Input, Space } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [passwordVisible, setPasswordVisible] = React.useState(false);
|
|
|
|
return (
|
|
<Space direction="vertical">
|
|
<Input.Password placeholder="input password" />
|
|
<Input.Password
|
|
placeholder="input password"
|
|
iconRender={(visible) => (visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />)}
|
|
/>
|
|
<Space direction="horizontal">
|
|
<Input.Password
|
|
placeholder="input password"
|
|
visibilityToggle={{ visible: passwordVisible, onVisibleChange: setPasswordVisible }}
|
|
/>
|
|
<Button style={{ width: 80 }} onClick={() => setPasswordVisible((prevState) => !prevState)}>
|
|
{passwordVisible ? 'Hide' : 'Show'}
|
|
</Button>
|
|
</Space>
|
|
</Space>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|