leptos_icons 0.0.1

Easily include a variety of SVG icons into your Leptos app, inspired by yew_icons
Documentation
1
use leptos :: * ; use crate :: { IconType , Path } ; fn icon_path (cx : Scope) -> Fragment { view ! { cx , < > < rect x = "4" y = "3" width = "16" height = "16" rx = "2" /> < path d = "M4 11h16" /> < path d = "M12 3v8" /> < path d = "m8 19-2 3" /> < path d = "m18 22-2-3" /> < path d = "M8 15h0" /> < path d = "M16 15h0" /> < / > } } pub const LucideTrain : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;