zuicon_material/icons/
door_sliding_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DoorSlidingOutlined)]
11pub fn door_sliding_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DoorSlidingOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M10,13H8v-2h2V13z M16,11h-2v2h2V11z M21,19v2H3v-2h1V5c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2v14H21z M11,5H6v14h5V5z M18,5 h-5v14h5V5z"/>
20 </SvgIcon>
21 }
22}