WIP governance page

This commit is contained in:
Fred Carlsen
2019-01-29 14:06:10 +01:00
committed by Jacob Evans
parent 5676702da6
commit 1ef434f95e
7 changed files with 1225 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import { ThemeInterface } from 'ts/components/siteWrap';
import { colors } from 'ts/style/colors';
interface ButtonInterface {
export interface ButtonInterface {
bgColor?: string;
borderColor?: string;
color?: string;
@@ -22,7 +22,7 @@ interface ButtonInterface {
type?: string;
target?: string;
to?: string;
onClick?: () => any;
onClick?: (e: Event) => any;
theme?: ThemeInterface;
shouldUseAnchorTag?: boolean;
}