zuicon_material/icons/
breakfast_dining_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(BreakfastDiningSharp)]
11pub fn breakfast_dining_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("BreakfastDiningSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M17.85,3L6.14,3C4.15,3,2.36,4.39,2.05,6.36C1.78,8.11,2.64,9.65,4,10.45V21h16V10.45c1.36-0.79,2.23-2.36,1.95-4.11 C21.63,4.38,19.83,3,17.85,3z M16.41,13L12,17.42L7.59,13L12,8.59L16.41,13z"/>
20 </SvgIcon>
21 }
22}