zuicon_material/icons/
add_photo_alternate_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AddPhotoAlternateSharp)]
11pub fn add_photo_alternate_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AddPhotoAlternateSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z"/>
20 </SvgIcon>
21 }
22}