use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowDownToDot(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ArrowDownToDot" }
path { d: "M12 2v14" }
path { d: "m19 9-7 7-7-7" }
<circle cx="12" cy="21" r="1" />
}
}
}