zuicon_material/icons/
lte_mobiledata_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(LteMobiledataTwoTone)]
11pub fn lte_mobiledata_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("LteMobiledataTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z"/>
20 </SvgIcon>
21 }
22}