Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/0c3dd5574afe5ff7520a1703e258e35d to your computer and use it in GitHub Desktop.
Save tfiechowski/0c3dd5574afe5ff7520a1703e258e35d to your computer and use it in GitHub Desktop.
import React from "react";
import styled from "@emotion/styled";
const Wrapper = styled.button`
text-transform: uppercase;
font-size: 1.5em;
font-weight: bold;
letter-spacing: 4px;
background: #5cdb95;
color: #05385b;
border: none;
border-radius: 5px;
padding: 10px 20px;
`;
export default function Button({ text }) {
return <Wrapper>{text}</Wrapper>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment