Interface AltButton

interface AltButton {
    name?: string;
    icon?: IconDefinition;
    alternateIcon?: IconDefinition;
    onPress?: (() => void);
    backgroundColor?: {
        default?: string;
    };
    active?: boolean;
    alternateIconComponent?: Element;
    iconComponent?: Element;
    customComponent?: Element;
    color?: string;
    inActiveColor?: string;
    show?: boolean;
}

Properties

name?: string
icon?: IconDefinition
alternateIcon?: IconDefinition
onPress?: (() => void)
backgroundColor?: {
    default?: string;
}
active?: boolean
alternateIconComponent?: Element
iconComponent?: Element
customComponent?: Element
color?: string
inActiveColor?: string
show?: boolean