dioxus_tw_components/components/molecules/breadcrumb/
style.rs1use super::props::*;
2use crate::attributes::*;
3
4impl Class for BreadcrumbProps {
5 fn base(&self) -> &'static str {
6 "flex flex-row items-center font-normal space-x-2 text-sm text-muted-foreground"
7 }
8}
9
10impl Class for BreadcrumbItemProps {
11 fn base(&self) -> &'static str {
12 "last:text-foreground last:font-medium"
13 }
14}
15
16impl Class for BreadcrumbSeparatorProps {
17 fn base(&self) -> &'static str {
18 "font-semibold"
19 }
20}