zuicon_material/icons/
folder_off_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FolderOffOutlined)]
11pub fn folder_off_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FolderOffOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,6h-8l-2-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z"/><path d="M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35,2.01,5.66,2.01,6L2,18c0,1.1,0.9,2,2,2h13.17l3.31,3.31l1.41-1.41L2.1,2.1z M4,18 V6.83L15.17,18H4z"/>
20 </SvgIcon>
21 }
22}