zuicon_material/icons/
headphones_battery_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(HeadphonesBatterySharp)]
11pub fn headphones_battery_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("HeadphonesBatterySharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M8,6c-3.31,0-6,2.69-6,6v6h4v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h4v-6C14,8.69,11.31,6,8,6z"/>
20 </SvgIcon>
21 }
22}