Skip to content
Snippets Groups Projects
Commit 3de45230 authored by Hermann's avatar Hermann
Browse files

fix icon naming

parent 262ba035
No related branches found
No related tags found
No related merge requests found
......@@ -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,
}),
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment