Updated UI

This commit is contained in:
2025-07-15 20:28:29 +02:00
parent 5c0bb602f5
commit 39006435b2
11 changed files with 139 additions and 63 deletions

View File

@@ -2,4 +2,13 @@ mod eye;
mod search;
pub use eye::eye;
use maud::{Markup, html};
pub use search::search;
pub fn arrow_left() -> Markup {
html! {
svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 256 256" {
path fill="currentColor" d="M224 128a8 8 0 0 1-8 8H59.31l58.35 58.34a8 8 0 0 1-11.32 11.32l-72-72a8 8 0 0 1 0-11.32l72-72a8 8 0 0 1 11.32 11.32L59.31 120H216a8 8 0 0 1 8 8" {}
}
}
}