zuicon_material/icons/
format_list_numbered_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FormatListNumberedSharp)]
11pub fn format_list_numbered_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FormatListNumberedSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z"/>
20 </SvgIcon>
21 }
22}