yew-octicons 0.4.0

Easy support for Octicons in yew
Documentation

yew_octicons is an easy interface for using Octicons in yew projects.

Example

use yew::html;
use yew_octicons::Icon;
use yew_octicons::IconKind;

let code = html! {
<span>
{ Icon::new(IconKind::Alert) }
</span>
};