diff --git a/src/views/elements.js b/src/views/elements.js
index 85b74f3e9ab3c0413634bf732ef15b8d21612ef3..0a57a4cc7548f88089b4ad90e67ee304e6011f03 100644
--- a/src/views/elements.js
+++ b/src/views/elements.js
@@ -267,21 +267,21 @@ export class submitButton {
 
 export const BackButton = {
   view: ({ attrs }) => m(IconButton, {
-    icon: { svg: m.trust(icons.iconBackSVG) },
+    icon: { svg: m.trust(icons.back) },
     ink: false,
     events: { onclick: attrs.leave },
   }),
 };
 export const ClearButton = {
   view: ({ attrs }) => m(IconButton, {
-    icon: { svg: m.trust(icons.iconClearSVG) },
+    icon: { svg: m.trust(icons.clear) },
     ink: false,
     events: { onclick: attrs.clear },
   }),
 };
 export const SearchIcon = {
   view: () => m(IconButton, {
-    icon: { svg: m.trust(icons.iconSearchSVG) },
+    icon: { svg: m.trust(icons.search) },
     inactive: true,
   }),
 };