From a1a3ea8239e5b82986473282bc7136f9c754128d Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Sat, 16 May 2026 23:31:58 +0200 Subject: [PATCH] feat(16-01): add download and chat icon cases to UIIcon switch - insert case "download" with arrow-down SVG (path + polyline + line) before default case - insert case "chat" with speech-bubble SVG (path) before default case - icon_button_templ.go regenerated via templ generate (gitignored, regenerated at build time) --- backend/internal/web/ui/icon_button.templ | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/backend/internal/web/ui/icon_button.templ b/backend/internal/web/ui/icon_button.templ index bd97b32..ef386ab 100644 --- a/backend/internal/web/ui/icon_button.templ +++ b/backend/internal/web/ui/icon_button.templ @@ -68,6 +68,16 @@ templ UIIcon(kind string) { + case "download": + + case "chat": + default: }