use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < line x1 = "5" y1 = "9" x2 = "19" y2 = "9" /> < line x1 = "5" y1 = "15" x2 = "19" y2 = "15" /> < / > } } pub const LucideEqual : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;