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 , < > < circle cx = "12" cy = "12" r = "10" /> < line x1 = "10" y1 = "15" x2 = "10" y2 = "9" /> < line x1 = "14" y1 = "15" x2 = "14" y2 = "9" /> < / > } } pub const LucidePauseCircle : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;