import React from "react";
import { renderWithTheme } from "../../testHelpers";
import Input from "../../components/Input/Input";
const handleChange = jest.fn();
it("renders correctly", () => {
const { asFragment } = renderWithTheme();
expect(asFragment()).toMatchInlineSnapshot(`
.c0 {
background-color: #eeeaf4;
border: 0;
border-radius: 16px;
box-shadow: inset 0px 2px 2px -1px rgba(74,74,104,0.1);
color: #452A7A;
display: block;
font-size: 16px;
height: 40px;
outline: 0;
padding: 0 16px;
width: 100%;
}
.c0::-webkit-input-placeholder {
color: #8f80ba;
}
.c0::-moz-placeholder {
color: #8f80ba;
}
.c0:-ms-input-placeholder {
color: #8f80ba;
}
.c0::placeholder {
color: #8f80ba;
}
.c0:disabled {
background-color: #E9EAEB;
box-shadow: none;
color: #BDC2C4;
cursor: not-allowed;
}
.c0:focus:not(:disabled) {
box-shadow: 0px 0px 0px 1px #7645D9,0px 0px 0px 4px rgba(118,69,217,0.6);
}
`);
});