use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ReplyAll(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ReplyAll" }
path { d: "m12 17-5-5 5-5" }
path { d: "M22 18v-2a4 4 0 0 0-4-4H7" }
path { d: "m7 17-5-5 5-5" }
}
}
}