zuicon_material/icons/
photo_camera_back_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PhotoCameraBackOutlined)]
11pub fn photo_camera_back_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PhotoCameraBackOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z"/>
20 </SvgIcon>
21 }
22}