zuicon_material/icons/
signal_cellular_no_sim_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellularNoSimOutlined)]
11pub fn signal_cellular_no_sim_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellularNoSimOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z"/>
20 </SvgIcon>
21 }
22}