Skip to content

Instantly share code, notes, and snippets.

@reciosonny
Created September 27, 2019 03:01
Show Gist options
  • Select an option

  • Save reciosonny/bde41e77696427acfd5792b8b83c1d7c to your computer and use it in GitHub Desktop.

Select an option

Save reciosonny/bde41e77696427acfd5792b8b83c1d7c to your computer and use it in GitHub Desktop.
import styled from "styled-components";
const Button = styled.a`
text-decoration: none;
color: #fff;
background-color: #26a69a;
text-align: center;
letter-spacing: 0.5px;
border: none;
border-radius: 2px;
display: block;
height: 36px;
line-height: 36px;
padding: 0 16px;
text-transform: uppercase;
position: relative;
cursor: pointer;
overflow: hidden;
margin-top: 10px;
`;
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment