export interface PlayPauseButtonProps {
    backgroundColor?: string;
    hoverColor?: string;
    playing?: boolean;
    onClick?: () => void;
}
