import React, { ReactNode } from "react"; import { styled } from "styled-components"; export const SimpleButtonStyled = styled.button` background: transparent; border: none; cursor: pointer; color: #767676; &:hover { color: #333; } `; export interface SimpleButtonProbs { children: ReactNode; } /** * A simple button component that accepts any text value so unicode can be used including emojis */ export const SimpleButton: React.FunctionComponent = ({ children, ...props }) => { return {children}; };