import React from "react"; export type ButtonStyles = "small"; export type ButtonColors = "blue" | "white" | "transparent"; // TODO figure out a better way of typing this. Need to use a type for anchor and button types for button export interface ButtonProps extends React.AnchorHTMLAttributes { buttonStyle?: ButtonStyles; buttonColor?: ButtonColors; as?: any; }