zuicon_material/icons/
fast_forward_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FastForwardTwoTone)]
11pub fn fast_forward_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FastForwardTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z"/><path d="M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z"/>
20 </SvgIcon>
21 }
22}