use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < path d = "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" /> < circle cx = "12" cy = "7" r = "4" /> < / > } } pub const LucideUser : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;