zuicon_material/icons/
fast_rewind_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FastRewindOutlined)]
11pub fn fast_rewind_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FastRewindOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z"/>
20 </SvgIcon>
21 }
22}