zuicon_material/icons/
phonelink_erase_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PhonelinkEraseSharp)]
11pub fn phonelink_erase_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PhonelinkEraseSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z"/>
20 </SvgIcon>
21 }
22}