icons 0.7.0

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Core SVG infrastructure
mod svg_icon;

// Registry-based approach (Dioxus pattern for Leptos)
pub mod compatibility;
pub mod icon_component;
pub mod icon_registry;
pub mod icon_type;
pub mod static_svg_element;

// Re-export SvgIcon for external use
// Re-export compatibility layer (all 1,636 component functions)
pub use compatibility::*;
// Re-export new registry-based components
pub use icon_component::Icon;
pub use icon_type::IconType;
pub use static_svg_element::StaticSvgElement;
pub use svg_icon::SvgIcon;