zuicon_material/icons/
call_missed_outgoing_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CallMissedOutgoingOutlined)]
11pub fn call_missed_outgoing_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CallMissedOutgoingOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z"/>
20 </SvgIcon>
21 }
22}