MediaSFU Angular
    Preparing search index...

    Interface MainButtonAlt

    interface MainButtonAlt {
        name?: string;
        icon?: IconDefinition;
        alternateIcon?: IconDefinition;
        onPress?: () => void;
        color?: string;
        backgroundColor?: { default?: string };
        active?: boolean | (() => boolean);
        customComponent?:
            | HTMLElement
            | CustomComponent
            | (() => HTMLElement | CustomComponent);
        iconComponent?:
            | HTMLElement
            | CustomComponent
            | (() => HTMLElement | CustomComponent);
        alternateIconComponent?:
            | HTMLElement
            | CustomComponent
            | (() => HTMLElement | CustomComponent);
        disabled?: boolean | (() => boolean);
        show?: boolean | (() => boolean);
        activeColor?: string | (() => string);
        inActiveColor?: string | (() => string);
    }

    Hierarchy (View Summary)

    Index

    Properties

    name?: string
    icon?: IconDefinition
    alternateIcon?: IconDefinition
    onPress?: () => void
    color?: string
    backgroundColor?: { default?: string }
    active?: boolean | (() => boolean)
    customComponent?:
        | HTMLElement
        | CustomComponent
        | (() => HTMLElement | CustomComponent)
    iconComponent?:
        | HTMLElement
        | CustomComponent
        | (() => HTMLElement | CustomComponent)
    alternateIconComponent?:
        | HTMLElement
        | CustomComponent
        | (() => HTMLElement | CustomComponent)
    disabled?: boolean | (() => boolean)
    show?: boolean | (() => boolean)
    activeColor?: string | (() => string)
    inActiveColor?: string | (() => string)