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

Properties

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