Skip to content

Instantly share code, notes, and snippets.

@agneym
Created February 14, 2020 15:10
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save agneym/93630f46fa8d6afacedf5a1700cc871b to your computer and use it in GitHub Desktop.
Save agneym/93630f46fa8d6afacedf5a1700cc871b to your computer and use it in GitHub Desktop.
Buy me a Coffee with React and Styled Components
import React from 'react';
import styled from 'styled-components';
const Button = styled.a`
line-height: 2;
height: 5rem;
text-decoration: none;
display:inline-flex;
color: #FFFFFF;
background-color: #FF813F;
border-radius: 5px;
border: 1px solid transparent;
padding: 0.7rem 1rem 0.7rem 1rem;
font-size: 2rem;
letter-spacing: 0.6px;
box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5);
transition: 0.3s all linear;
font-family: cursive;
&:hover, &:active, &:focus {
text-decoration: none;
box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5);
opacity: 0.85;
color:#FFFFFF;
}
`;
const Image = styled.img`
height: 34px;
width: 35px;
margin-bottom: 1px;
box-shadow: none;
border: none;
vertical-align: middle;
`;
const Text = styled.span`
margin-left: 15px;
font-size: 2rem;
vertical-align: middle;
`;
function Coffee() {
return (
<Button target="_blank" href="https://www.buymeacoffee.com/agney">
<Image src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee" />
<Text>Buy me a coffee</Text>
</Button>
);
}
export default Coffee;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment