zuicon_material/icons/
co_present_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CoPresentSharp)]
11pub fn co_present_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CoPresentSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z"/>
20 </SvgIcon>
21 }
22}