zuicon_material/icons/
checklist_rtl_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ChecklistRtlSharp)]
11pub fn checklist_rtl_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ChecklistRtlSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z"/>
20 </SvgIcon>
21 }
22}