Interface GenericButton

interface GenericButton {
    name?: string;
    icon?: IconDefinition;
    alternateIcon?: IconDefinition;
    onPress?: (() => void);
    color?: string;
    backgroundColor?: {
        default?: string;
    };
}

Hierarchy (view full)

Properties

name?: string
icon?: IconDefinition
alternateIcon?: IconDefinition
onPress?: (() => void)
color?: string
backgroundColor?: {
    default?: string;
}