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.
57 lines
982 B
57 lines
982 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`component.UI.Button should render correctly 1`] = `
|
|
.c1 {
|
|
font-family: sans;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.c0 {
|
|
margin: 0px;
|
|
padding-left: 64px;
|
|
padding-right: 64px;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
font-size: inherit;
|
|
color: white;
|
|
background-color: blue;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
display: inline-block;
|
|
text-align: center;
|
|
line-height: inherit;
|
|
-webkit-text-decoration: none;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
border: 0;
|
|
border-radius: 4px;
|
|
-webkit-transition: all 0.25s;
|
|
transition: all 0.25s;
|
|
outline: none;
|
|
border-radius: 5;
|
|
font-weight: 300;
|
|
line-height: '18px';
|
|
}
|
|
|
|
.c0:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.c0:hover:enabled {
|
|
cursor: pointer;
|
|
}
|
|
|
|
<button
|
|
className="c0"
|
|
color="white"
|
|
fontSize="inherit"
|
|
fontWeight="bold"
|
|
>
|
|
<div
|
|
className="c1"
|
|
fontFamily="sans"
|
|
fontWeight="normal"
|
|
/>
|
|
</button>
|
|
`;
|
|
|