export interface ButtonProps {
    disabled?: boolean;
    iconLeft?: string;
    iconRight?: string;
    href?: string;
    onPress?: (event?: any) => void;
    primary?: boolean;
    raised?: boolean;
    backgroundColor?: string;
    labelColor?: string;
    styles?: any;
    title?: string;
}
