Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/f780cfad9db0976fd40167faa51bc2d6 to your computer and use it in GitHub Desktop.
Save tfiechowski/f780cfad9db0976fd40167faa51bc2d6 to your computer and use it in GitHub Desktop.
import React from "react";
import styled from "@emotion/styled";
import { font, primaryColors, shape } from "../config/styles";
const Wrapper = styled.button`
${font}
${primaryColors}
${shape}
`;
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