From 24c52fa626ebccb450ba88b4181f3c388a76745f Mon Sep 17 00:00:00 2001 From: Ben Floyd Date: Thu, 2 Jul 2026 15:51:23 -0600 Subject: [PATCH] use chevron instead of ascii --- src/slices/calendar-navigation/ComponentUIBuilder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slices/calendar-navigation/ComponentUIBuilder.ts b/src/slices/calendar-navigation/ComponentUIBuilder.ts index 19c82ad..f438b3d 100644 --- a/src/slices/calendar-navigation/ComponentUIBuilder.ts +++ b/src/slices/calendar-navigation/ComponentUIBuilder.ts @@ -226,7 +226,7 @@ export class ComponentUIBuilder { private setupNavigationControls(navControls: HTMLElement, collapsedView: HTMLElement): void { const prevDayButton = navControls.createDiv('streams-bar-day-nav prev-day'); - prevDayButton.setText('←'); + setIcon(prevDayButton, 'chevron-left'); prevDayButton.setAttribute('aria-label', 'Previous day'); this.eventRegistry.register(prevDayButton, 'click', async (e: Event) => { e.stopPropagation(); @@ -242,7 +242,7 @@ export class ComponentUIBuilder { }); const nextDayButton = navControls.createDiv('streams-bar-day-nav next-day'); - nextDayButton.setText('→'); + setIcon(nextDayButton, 'chevron-right'); nextDayButton.setAttribute('aria-label', 'Next day'); this.eventRegistry.register(nextDayButton, 'click', async (e: Event) => { e.stopPropagation();