zuicon_material/icons/
outbound_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(OutboundRounded)]
11pub fn outbound_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("OutboundRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.25,4.25 c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41l4.25-4.25L11.2,8.86C10.88,8.54,11.11,8,11.55,8l3.94,0 c0.28,0,0.5,0.22,0.5,0.5l0,3.94c0,0.45-0.54,0.67-0.85,0.35L13.88,11.54z"/>
20 </SvgIcon>
21 }
22}