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 , < > < line x1 = "22" y1 = "2" x2 = "11" y2 = "13" /> < polygon points = "22 2 15 22 11 13 2 9 22 2" /> < / > } } pub const LucideSend : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;