zuicon_material/icons/
three_g_mobiledata_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ThreeGMobiledataSharp)]
11pub fn three_g_mobiledata_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ThreeGMobiledataSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M3,7v2h5v2H4v2h4v2H3v2h7V7H3z M21,11v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z"/>
20 </SvgIcon>
21 }
22}