zuicon_material/icons/
format_list_bulleted_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FormatListBulletedTwoTone)]
11pub fn format_list_bulleted_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FormatListBulletedTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 5h14v2H7z"/><path d="M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z"/>
20 </SvgIcon>
21 }
22}