zuicon_material/icons/
times_one_mobiledata_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TimesOneMobiledataOutlined)]
11pub fn times_one_mobiledata_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TimesOneMobiledataOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z"/>
20 </SvgIcon>
21 }
22}