interface PlayButtonProps {
    icon?: {
        pause: ReactNode;
        play: ReactNode;
        replay: ReactNode;
    };
    style?: StyleProp<ViewStyle>;
}

Properties

Properties

icon?: {
    pause: ReactNode;
    play: ReactNode;
    replay: ReactNode;
}

The icon components used in the button.

Type declaration

  • pause: ReactNode
  • play: ReactNode
  • replay: ReactNode

The style overrides for the play/pause button.

Generated using TypeDoc