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