15 lines
439 B
Rust
15 lines
439 B
Rust
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" {}
|
|
}
|
|
}
|
|
}
|