use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < path d = "m8 14-6 6h9v-3" /> < path d = "M18.37 3.63 8 14l3 3L21.37 6.63a2.12 2.12 0 1 0-3-3Z" /> < / > } } pub const LucideSlice : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;