/yew_svg

svg icon support for rust yew framework

Primary LanguageRust

SVG Icon Helper for yew framework

support yew 0.5

USAGE

1) with remote svg-defs:

html!{
    <SVG: href="/svg-defs.svg#shape",/>
}

2) with local *.svg file or string:

html!{
    <SVG: content=include_str!("../svgs/satellite.svg"),/>
}