zuicon_material/icons/
format_indent_increase_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FormatIndentIncreaseSharp)]
11pub fn format_indent_increase_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FormatIndentIncreaseSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"/>
20 </SvgIcon>
21 }
22}