zuicon_material/icons/
panorama_horizontal_select_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PanoramaHorizontalSelectSharp)]
11pub fn panorama_horizontal_select_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PanoramaHorizontalSelectSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,5.5c-5.25,0-9.01-1.54-10-1.92L2,20.4c2.16-0.76,5.21-1.9,10-1.9c4.78,0,7.91,1.17,10,1.9L22,3.6 C19.91,4.33,16.77,5.5,12,5.5z"/>
20 </SvgIcon>
21 }
22}