export interface CaptionsSettingsButtonProps { label: string; onClick: (event: MouseEvent) => void; } export const CaptionsSettingButton = (props: CaptionsSettingsButtonProps) => ( props.onClick(e)} >
);