interface MuteButtonProps {
    icon?: {
        volumeOff: ReactNode;
        volumeUp: ReactNode;
    };
    style?: StyleProp<ViewStyle>;
    testID?: string;
}

Hierarchy

  • ButtonBaseProps
    • MuteButtonProps

Properties

Properties

icon?: {
    volumeOff: ReactNode;
    volumeUp: ReactNode;
}

The icon components used in the button.

Type declaration

  • volumeOff: ReactNode
  • volumeUp: ReactNode

The style overrides for the button.

testID?: string

An id used to locate this view in end-to-end tests.