thaw/src/divider/mod.rs
2023-11-13 16:17:45 +08:00

13 lines
277 B
Rust

use leptos::*;
use crate::utils::mount_style;
#[component]
pub fn Divider() -> impl IntoView {
mount_style("divider", include_str!("./divider.css"));
view! {
<div class="thaw-divider">
<div class="thaw-divider__line"></div>
</div>
}
}