zuicon_material/icons/
send_to_mobile_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SendToMobileOutlined)]
11pub fn send_to_mobile_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SendToMobileOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M18,8l4,4l-4,4l-1.41-1.41L18.17,13H13v-2h5.17l-1.59-1.59L18,8z M7,1.01L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10v-1h2v4 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1.01,7,1.01z M7,21h10v-1H7V21z M7,4h10V3H7V4z"/>
20 </SvgIcon>
21 }
22}