zuicon_material/icons/
breakfast_dining.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(BreakfastDining)]
11pub fn breakfast_dining(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("BreakfastDining"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z" fill-rule="evenodd"/>
20 </SvgIcon>
21 }
22}