yew_svg 0.2.1

SVG icon helper for yew framework
Documentation

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"),/>
}