zuicon_material/icons/
lte_plus_mobiledata_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(LtePlusMobiledataTwoTone)]
11pub fn lte_plus_mobiledata_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("LtePlusMobiledataTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z"/>
20 </SvgIcon>
21 }
22}