zuicon_material/icons/
perm_phone_msg_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PermPhoneMsgSharp)]
11pub fn perm_phone_msg_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PermPhoneMsgSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 3v10l3-3h6V3zm1.21 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z"/>
20 </SvgIcon>
21 }
22}