17 lines
521 B
Rust
17 lines
521 B
Rust
use leptos::prelude::*;
|
|
|
|
use crate::client_icon::ClientIcon;
|
|
|
|
#[component]
|
|
pub fn Breadcrumb(current: &'static str) -> impl IntoView {
|
|
view! {
|
|
<div class="cowa-breadcrumb">
|
|
<span>"数据平台"</span>
|
|
<ClientIcon icon=Some("ChevronRightIcon") class="cowa-breadcrumb-icon".to_owned() />
|
|
<span>"管理中心"</span>
|
|
<ClientIcon icon=Some("ChevronRightIcon") class="cowa-breadcrumb-icon".to_owned() />
|
|
<strong>{current}</strong>
|
|
</div>
|
|
}
|
|
}
|