zuicon_material/icons/
swap_horizontal_circle_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SwapHorizontalCircleSharp)]
11pub fn swap_horizontal_circle_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SwapHorizontalCircleSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z"/>
20 </SvgIcon>
21 }
22}