zuicon_material/icons/
set_meal_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SetMealSharp)]
11pub fn set_meal_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SetMealSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M22,3v11H2V3H22z M20,6 c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73 C16.96,10.02,18.32,11,20,11V6z"/>
20 </SvgIcon>
21 }
22}