New favicon

This commit is contained in:
2020-08-12 20:19:41 +02:00
parent e4a4d3951d
commit 9d967a2b37
5 changed files with 192 additions and 146 deletions

View File

@@ -4,13 +4,12 @@ import Button from "@material-ui/core/Button";
const StyledButton = withStyles({
root: {
background: "none",
color: "white",
border: "solid 1px white",
backgroundColor: "#696969",
color: "#262626",
margin: "16px 16px 16px 0px",
padding: "8px 12px 8px 12px",
"&:hover": {
color: "white",
backgroundColor: "#808080",
},
},
label: {
@@ -19,5 +18,5 @@ const StyledButton = withStyles({
})(Button);
export default function ButtonPrimary(props) {
return <StyledButton>{props.text}</StyledButton>;
return <StyledButton onClick={props.onClick}>{props.text}</StyledButton>;
}