mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
41 lines
970 B
R
41 lines
970 B
R
use dioxus::prelude::*;
|
|
|
|
#[inline_props]
|
|
pub fn Explainer<'a>(
|
|
cx: Scope<'a>,
|
|
invert: bool,
|
|
title: &'static str,
|
|
content: Element<'a>,
|
|
flasher: Element<'a>,
|
|
) -> Element {
|
|
// pt-5 sm:pt-24 lg:pt-24
|
|
|
|
let mut right = rsx! {
|
|
div { class: "relative w-1/2", flasher }
|
|
};
|
|
|
|
let align = match invert {
|
|
true => "mr-auto ml-16",
|
|
false => "ml-auto mr-16",
|
|
};
|
|
|
|
let mut left = rsx! {
|
|
div { class: "relative w-1/2 {align} max-w-md leading-8",
|
|
h2 { class: "mb-6 text-3xl leading-tight md:text-4xl md:leading-tight lg:text-3xl lg:leading-tight font-heading font-mono font-bold",
|
|
"{title}"
|
|
}
|
|
content
|
|
}
|
|
};
|
|
|
|
if *invert {
|
|
std::mem::swap(&mut left, &mut right);
|
|
}
|
|
|
|
cx.render(rsx! {
|
|
div { class: "flex flex-wrap items-center dark:text-white py-16 border-t font-light",
|
|
left,
|
|
right
|
|
}
|
|
})
|
|
}
|