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 , < > < path d = "M13 20h-1a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1" /> < path d = "M5 4h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5" /> < path d = "M13.1 7.9h6.8A2.18 2.18 0 0 1 22 10v4a2.11 2.11 0 0 1-2.1 2.1h-6.8" /> < path d = "M4.8 16.1h-.7A2.18 2.18 0 0 1 2 14v-4a2.18 2.18 0 0 1 2.1-2.1h.7" /> < / > } } pub const LucideTextCursorInput : Path = Path { path : icon_path , icon_type : IconType::Lucide , } ;