zuicon_material/icons/
unfold_more_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(UnfoldMoreTwoTone)]
11pub fn unfold_more_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("UnfoldMoreTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"/>
20 </SvgIcon>
21 }
22}