zuicon_material/icons/
phone_android_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PhoneAndroidTwoTone)]
11pub fn phone_android_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PhoneAndroidTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 4h10v14H7z" opacity=".3"/><path d="M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z"/>
20 </SvgIcon>
21 }
22}