Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/e6f2bc722e2dd57e8ca25801f6c38a7d to your computer and use it in GitHub Desktop.
Save tfiechowski/e6f2bc722e2dd57e8ca25801f6c38a7d 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