export interface CaptionsSettingsButtonProps { label: string; onClick: (event: MouseEvent) => void; } export const CaptionsSettingButton = (props: CaptionsSettingsButtonProps) => ( props.onClick(e)} role={'button'} tabindex={0} title={props.label} >
);