use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < rect x = "3" y = "11" width = "18" height = "10" rx = "2" /> < circle cx = "12" cy = "5" r = "2" /> < path d = "M12 7v4" /> < line x1 = "8" y1 = "16" x2 = "8" y2 = "16" /> < line x1 = "16" y1 = "16" x2 = "16" y2 = "16" /> < / > } } pub const LucideBot : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;