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.
27 lines
955 B
27 lines
955 B
export default function StyledButton(props: any) {
|
|
return (
|
|
<div>
|
|
<style jsx>{`
|
|
a {
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-family: "Red Hat Display";
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0.4em 1em;
|
|
font-family: "Red Hat Display";
|
|
font-weight: 500;
|
|
font-size: 1em;
|
|
border-radius: 8px;
|
|
transition-duration: 0.2s;
|
|
}
|
|
a:hover {
|
|
background-color: var(--background-color-dark);
|
|
text-decoration: none;
|
|
transition-duration: 0.2s;
|
|
}
|
|
`}</style>
|
|
<a href={props.href} target={props.target} rel={props.rel}>{props.children}</a>
|
|
</div>
|
|
)
|
|
} |