zuicon_material/icons/
insert_page_break.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(InsertPageBreak)]
11pub fn insert_page_break(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("InsertPageBreak"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2v-3H4L4,20z"/><path d="M20,8l-6-6H6C4.9,2,4.01,2.9,4.01,4l0,7H20V8z M13,9V3.5L18.5,9H13z"/>
20 </SvgIcon>
21 }
22}