MediaSFU Vue
    Preparing search index...

    Interface ButtonTouch<TIcon, TElement>

    interface ButtonTouch<TIcon = unknown, TElement = unknown> {
        name?: string;
        icon?: TIcon;
        alternateIcon?: TIcon;
        onPress?: () => void;
        backgroundColor?: { default?: string };
        active?: boolean;
        alternateIconComponent?: TElement;
        iconComponent?: TElement;
        customComponent?: TElement;
        color?: string;
        activeColor?: string;
        inActiveColor?: string;
        show?: boolean;
        disabled?: boolean;
    }

    Type Parameters

    • TIcon = unknown
    • TElement = unknown
    Index

    Properties

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