pub use svg_icon as zzz__macro_use_svg_icon;
/// Index to lookup available icons from material
pub use index as material;
/// Index to lookup available icons from bootstrap
pub use index as bootstrap;
pub use *;
pub use *;
/// Macro to lookup a SVG at compile time.
/// Wraps the proc-macro for better ergonomics.
/// ```rust, no_run
/// let svg = pictogram::svg!(pictogram::material::action_123::filled);
/// println!("{}", svg);
/// ```