it('should not show value attribute in input element after toggle visibility', async () => {
    jest.useFakeTimers();
    const { container } = render(<Input.Password />);
    fireEvent.change(container.querySelector('input')!, { target: { value: 'value' } });
    await waitFakeTimer();