zuicon_material/icons/
format_indent_decrease.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FormatIndentDecrease)]
11pub fn format_indent_decrease(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FormatIndentDecrease"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"/>
20 </SvgIcon>
21 }
22}