use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SignalMedium(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SignalMedium" }
path { d: "M2 20h.01" }
path { d: "M7 20v-4" }
path { d: "M12 20v-8" }
}
}
}