zuicon_material/icons/
add_to_home_screen_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AddToHomeScreenSharp)]
11pub fn add_to_home_screen_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AddToHomeScreenSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 1.01L6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z"/>
20 </SvgIcon>
21 }
22}