// Copyright: © 2026 TWWIM UG. All rights reserved. (www.twwim.com) /** * PhraseListHeader — locale label + "n / max" counter shown above the list. * * @layer Presentation */ interface PhraseListHeaderProps { localeLabel: string; count: number; max: number; } export function PhraseListHeader({ localeLabel, count, max, }: PhraseListHeaderProps) { return (