zuicon_material/icons/
format_list_numbered_rtl.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FormatListNumberedRtl)]
11pub fn format_list_numbered_rtl(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FormatListNumberedRtl"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z"/>
20 </SvgIcon>
21 }
22}