zuicon_material/icons/
call_merge_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CallMergeOutlined)]
11pub fn call_merge_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CallMergeOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"/>
20 </SvgIcon>
21 }
22}