zuicon_material/icons/
door_front_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DoorFrontTwoTone)]
11pub fn door_front_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DoorFrontTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M7,19h10V5H7V19z M13,11h2v2h-2V11z" opacity=".3"/><path d="M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z"/>
20 </SvgIcon>
21 }
22}