use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < rect x = "5" y = "15" width = "14" height = "6" rx = "2" /> < rect x = "7" y = "3" width = "10" height = "6" rx = "2" /> < path d = "M2 21h20" /> < path d = "M2 3h20" /> < / > } } pub const LucideAlignVerticalSpaceBetween : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;