use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn AArrowDown(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - AArrowDown" }
path { d: "M3.5 13h6" }
path { d: "m2 16 4.5-9 4.5 9" }
path { d: "M18 7v9" }
path { d: "m14 12 4 4 4-4" }
}
}
}