export function OverviewAxisNotes({ xAxisLabel, yAxisLabel, }: { xAxisLabel: string; yAxisLabel: string; }) { return (
{xAxisLabel} {yAxisLabel}
); }