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.
56 lines
1.0 KiB
56 lines
1.0 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`component.UI.Input should render correctly 1`] = `
|
|
.c0 {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.c1 {
|
|
padding: 16px;
|
|
width: 100%;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
background-color: transparent;
|
|
color: #fff;
|
|
background-color: transparent;
|
|
font-family: "Roboto Light",Roboto,system-ui,sans-serif;
|
|
font-weight: light;
|
|
border: 1px solid;
|
|
border: 1px solid;
|
|
border-color: #959595;
|
|
border-radius: 5px;
|
|
outline: none;
|
|
}
|
|
|
|
.c1:not([readOnly]):not([disabled]):focus {
|
|
border: 1px solid #fd9800;
|
|
}
|
|
|
|
<form
|
|
onReset={[Function]}
|
|
onSubmit={[Function]}
|
|
>
|
|
<div
|
|
className="c0"
|
|
>
|
|
<input
|
|
className="c1"
|
|
color="primaryText"
|
|
fontFamily="sans"
|
|
fontSize="m"
|
|
fontWeight="light"
|
|
onBlur={[Function]}
|
|
onChange={[Function]}
|
|
onFocus={[Function]}
|
|
value=""
|
|
width={1}
|
|
/>
|
|
</div>
|
|
</form>
|
|
`;
|
|
|