@ant-design/icons#EyeTwoTone JavaScript Examples
The following examples show how to use
@ant-design/icons#EyeTwoTone.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FocusButton.jsx From ui with MIT License | 6 votes |
FocusButton = (props) => {
const { store, lookupKey, experimentId } = props;
const dispatch = useDispatch();
const focusData = useSelector((state) => state.cellInfo.focus);
const buttonRef = useRef(null);
const onClick = (e) => {
// Prevent clicking button from clicking the component it is embedded in (i.e. table row).
e.stopPropagation();
// Lose focus so the button changes color from blue to black when you click on it.
buttonRef.current.blur();
dispatch(setCellInfoFocus(experimentId, store, lookupKey));
};
const focused = focusData.store === store && focusData.key === lookupKey;
return (
<Tooltip placement='right' title={`${(focused) ? 'Hide color on' : 'Show color on'} embedding`} destroyTooltipOnHide>
<Button
type='dashed'
aria-label='Show on embedding'
style={{ background: 'none' }}
size='small'
onClick={onClick}
ref={buttonRef}
>
{focused
? (<EyeTwoTone style={{ cursor: 'pointer' }} />)
: (<EyeOutlined style={{ cursor: 'pointer' }} />)}
</Button>
</Tooltip>
);
}
Example #2
Source File: password-input.jsx From virtuoso-design-system with MIT License | 6 votes |
storiesOf('antd/Input', module).add('password-input', () =>
<Space direction="vertical">
<Input.Password placeholder="input password" />
<Input.Password
placeholder="input password"
iconRender={visible => (visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />)}
/>
</Space>,
{ docs: { page: () => (<><h1 id="enus">en-US</h1>
<p>Input type of password.</p></>) } });
Example #3
Source File: Login.js From Peppermint with GNU General Public License v3.0 | 5 votes |
Login = () => {
const history = useHistory();
const [password, setPassword] = useState("");
const [email, setEmail] = useState("");
const { signin } = useContext(GlobalContext);
const onSubmit = async () => {
signin(email, password);
};
return (
<div>
<Form
style={{ position: "absolute" }}
name="normal_login"
className="login-form"
initialValues={{
remember: true,
}}
>
<div className="logo-login">
<Image alt="logo" src={logo} width={300} preview={false} />
</div>
<Form.Item
name="username"
rules={[
{
required: true,
message: "Please input your Email!",
},
]}
>
<Input
style={{ width: 300 }}
prefix={<UserOutlined className="site-form-item-icon" />}
placeholder="Email"
onChange={(e) => setEmail(e.target.value)}
/>
</Form.Item>
<Form.Item
name="password"
rules={[
{
required: true,
message: "Please input your Password!",
},
]}
>
<Input.Password
style={{ width: 300 }}
prefix={<LockOutlined className="site-form-item-icon" />}
type="password"
placeholder="Password"
iconRender={(visible) =>
visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />
}
onChange={(e) => setPassword(e.target.value)}
/>
</Form.Item>
<Form.Item>
<Button
type="primary"
htmlType="submit"
className="login-form-button"
onClick={() => {
onSubmit();
setTimeout(() => history.push("/"), 1000);
}}
>
Log in
</Button>
</Form.Item>
</Form>
</div>
);
}
Example #4
Source File: Reg.js From Peppermint with GNU General Public License v3.0 | 4 votes |
Reg = () => {
const history = useHistory();
const [password, setPassword] = useState("");
const [email, setEmail] = useState("");
const [name, setName] = useState("");
const PostData = async () => {
await fetch(`/api/v1/auth/Signup`, {
method: "post",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
name,
email,
password,
}),
})
.then((res) => res.json())
.then((data) => {
if (!data.error) {
history.push("/login");
} else {
console.log(data.error);
}
});
};
return (
<div>
<div>
<Form
style={{ position: "absolute" }}
name="normal_login"
className="login-form"
initialValues={{
remember: true,
}}
>
<div className="logo-login">
<Image alt="logo" src={logo} width={300} preview={false} />
</div>
<Form.Item
name="username"
rules={[
{
required: true,
message: "Please input your Email!",
},
]}
>
<Input
style={{ width: 300 }}
prefix={<UserOutlined className="site-form-item-icon" />}
placeholder="Email"
onChange={(e) => setEmail(e.target.value)}
/>
</Form.Item>
<Form.Item
name="name"
rules={[
{
required: true,
message: "Please input your name!",
},
]}
>
<Input
style={{ width: 300 }}
prefix={<UserOutlined className="site-form-item-icon" />}
placeholder="Name"
onChange={(e) => setName(e.target.value)}
/>
</Form.Item>
<Form.Item
name="password"
rules={[
{
required: true,
message: "Please input your Password!",
},
]}
>
<Input.Password
style={{ width: 300 }}
prefix={<LockOutlined className="site-form-item-icon" />}
type="password"
placeholder="Password"
iconRender={(visible) =>
visible ? <EyeTwoTone /> : <EyeInvisibleOutlined />
}
onChange={(e) => setPassword(e.target.value)}
/>
</Form.Item>
<Form.Item>
<Button
type="primary"
htmlType="submit"
className="login-form-button"
onClick={() => {
PostData();
setTimeout(() => history.push("/"), 4000);
}}
>
Log in
</Button>
</Form.Item>
</Form>
</div>
</div>
);
}