rust-stream-layouts/src/components/stream_topbar.rs

9 lines
259 B
Rust

use dioxus::prelude::*;
pub fn StreamTopbar(cx: Scope) -> Element {
cx.render(rsx!{
div { class: "absolute top-[5.5rem] right-4 p-4 ring-[1px] ring-ada-werefox-cyan bg-alice-werefox-grey w-[80rem] h-[13rem]",
div {}
}
})
}