zuicon_material/icons/
expand_more_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ExpandMoreTwoTone)]
11pub fn expand_more_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ExpandMoreTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M24 24H0V0h24v24z" fill="none" opacity=".87"/><path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"/>
20 </SvgIcon>
21 }
22}