zuicon_material/icons/
mic_external_on_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MicExternalOnSharp)]
11pub fn mic_external_on_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MicExternalOnSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M9.22,7H4.78C4.3,6.47,4,5.77,4,5c0-1.66,1.34-3,3-3s3,1.34,3,3C10,5.77,9.7,6.47,9.22,7z M20,2v20h-2V4h-4v18H6 c0,0,0-1.79,0-4H5L4,8h6L9,18H8v2h4V2H20z"/>
20 </SvgIcon>
21 }
22}