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 = "6" y = "4" width = "16" height = "13" rx = "2" /> < path d = "m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7" /> < path d = "M2 8v11c0 1.1.9 2 2 2h14" /> < / > } } pub const LucideMails : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;